Skip to content

Commit

Permalink
Remove policy id where it is not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
nielstron committed Sep 2, 2024
1 parent bb97798 commit 62fad6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-test/test/test_zero_empty_asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def load_or_create_key_pair(base_dir, base_name):

# Build and sign transaction
signed_tx = builder.build_and_sign(
[self.payment_skey, self.extended_payment_skey, policy_skey], address
[self.payment_skey, self.extended_payment_skey], address
)

print("############### Transaction created ###############")
Expand Down Expand Up @@ -191,7 +191,7 @@ def load_or_create_key_pair(base_dir, base_name):

# Build and sign transaction
signed_tx = builder.build_and_sign(
[self.payment_skey, self.extended_payment_skey, policy_skey], address
[self.payment_skey, self.extended_payment_skey], address
)

print("############### Transaction created ###############")
Expand Down

0 comments on commit 62fad6a

Please sign in to comment.