Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Oct 20, 2023
1 parent edaba26 commit b3ff44d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions bindings/python/tests/test_block.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
12 changes: 6 additions & 6 deletions sdk/tests/client/node_api/indexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
// },
// },
// };
Expand All @@ -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())?;
Expand Down Expand Up @@ -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())?;
Expand Down

0 comments on commit b3ff44d

Please sign in to comment.