@@ -443,7 +443,7 @@ def test_tx_builder_burn_multi_asset(chain_context):
443
443
tx_builder = TransactionBuilder (chain_context )
444
444
sender = "addr_test1vrm9x2zsux7va6w892g38tvchnzahvcd9tykqf3ygnmwtaqyfg52x"
445
445
sender_address : Address = Address .from_primitive (sender )
446
- print ( "1" )
446
+
447
447
# Add sender address as input
448
448
to_burn = MultiAsset .from_primitive ({policy_id .payload : {b"Token1" : - 1 }})
449
449
tx_input = TransactionInput .from_primitive ([b"1" * 32 , 123 ])
@@ -455,13 +455,12 @@ def test_tx_builder_burn_multi_asset(chain_context):
455
455
),
456
456
)
457
457
)
458
- print ( "2" )
458
+
459
459
tx_builder .add_input_address (sender ).add_output (
460
460
TransactionOutput .from_primitive ([sender , 3000000 ])
461
461
).add_output (TransactionOutput .from_primitive ([sender , 2000000 ]))
462
462
463
463
tx_builder .mint = to_burn
464
- print ("3" )
465
464
tx_body = tx_builder .build (change_address = sender_address )
466
465
467
466
assert tx_input in tx_body .inputs
@@ -2401,7 +2400,6 @@ def test_token_transfer_with_change(chain_context):
2401
2400
),
2402
2401
)
2403
2402
tx_builder .add_output (TransactionOutput (receiver_address , output_value ))
2404
- # print(tx_builder)
2405
2403
2406
2404
# Build transaction with change going back to vault
2407
2405
tx = tx_builder .build (change_address = vault_address , merge_change = True )
@@ -2422,4 +2420,4 @@ def test_token_transfer_with_change(chain_context):
2422
2420
assert (
2423
2421
change_output .amount .multi_asset [token_policy_id ][token_name ]
2424
2422
== 1876083 - 382
2425
- )
2423
+ )
0 commit comments