diff --git a/bindings/python/tests/test_block.py b/bindings/python/tests/test_block.py index 5e238f8eea..8d64ec11c9 100644 --- a/bindings/python/tests/test_block.py +++ b/bindings/python/tests/test_block.py @@ -5,6 +5,7 @@ from typing import get_args from iota_sdk import BasicBlock, BlockType, BlockWrapper, Payload, PayloadType + def test_basic_block_with_tagged_data_payload(): block_dict = { "type": 0, diff --git a/sdk/tests/client/node_api/indexer.rs b/sdk/tests/client/node_api/indexer.rs index 2608948554..ef726b8ee9 100644 --- a/sdk/tests/client/node_api/indexer.rs +++ b/sdk/tests/client/node_api/indexer.rs @@ -11,8 +11,8 @@ // AddressUnlockCondition, GovernorAddressUnlockCondition, ImmutableAliasAddressUnlockCondition, // StateControllerAddressUnlockCondition, UnlockCondition, // }, -// AliasId, AccountOutputBuilder, FoundryId, FoundryOutputBuilder, NftId, NftOutputBuilder, SimpleTokenScheme, -// TokenScheme, +// AliasId, AccountOutputBuilder, FoundryId, FoundryOutputBuilder, NftId, NftOutputBuilder, +// SimpleTokenScheme, TokenScheme, // }, // }, // }; @@ -32,8 +32,8 @@ // .await?[0]; // let alias_output = -// AccountOutputBuilder::new_with_minimum_storage_deposit(*protocol_parameters.rent_structure(), AliasId::null()) -// .with_state_metadata([1, 2, 3]) +// AccountOutputBuilder::new_with_minimum_storage_deposit(*protocol_parameters.rent_structure(), +// AliasId::null()) .with_state_metadata([1, 2, 3]) // .add_unlock_condition(StateControllerAddressUnlockCondition::new(address)) // .add_unlock_condition(GovernorAddressUnlockCondition::new(address)) // .finish_output(protocol_parameters.token_supply())?; @@ -94,8 +94,8 @@ // .await?[0]; // let alias_output_0 = -// AccountOutputBuilder::new_with_minimum_storage_deposit(*protocol_parameters.rent_structure(), AliasId::null()) -// .with_state_metadata([1, 2, 3]) +// AccountOutputBuilder::new_with_minimum_storage_deposit(*protocol_parameters.rent_structure(), +// AliasId::null()) .with_state_metadata([1, 2, 3]) // .add_unlock_condition(StateControllerAddressUnlockCondition::new(address)) // .add_unlock_condition(GovernorAddressUnlockCondition::new(address)) // .finish_output(protocol_parameters.token_supply())?;