@@ -443,7 +443,7 @@ def test_tx_builder_burn_multi_asset(chain_context):
443443 tx_builder = TransactionBuilder (chain_context )
444444 sender = "addr_test1vrm9x2zsux7va6w892g38tvchnzahvcd9tykqf3ygnmwtaqyfg52x"
445445 sender_address : Address = Address .from_primitive (sender )
446- print ( "1" )
446+
447447 # Add sender address as input
448448 to_burn = MultiAsset .from_primitive ({policy_id .payload : {b"Token1" : - 1 }})
449449 tx_input = TransactionInput .from_primitive ([b"1" * 32 , 123 ])
@@ -455,13 +455,12 @@ def test_tx_builder_burn_multi_asset(chain_context):
455455 ),
456456 )
457457 )
458- print ( "2" )
458+
459459 tx_builder .add_input_address (sender ).add_output (
460460 TransactionOutput .from_primitive ([sender , 3000000 ])
461461 ).add_output (TransactionOutput .from_primitive ([sender , 2000000 ]))
462462
463463 tx_builder .mint = to_burn
464- print ("3" )
465464 tx_body = tx_builder .build (change_address = sender_address )
466465
467466 assert tx_input in tx_body .inputs
@@ -2401,7 +2400,6 @@ def test_token_transfer_with_change(chain_context):
24012400 ),
24022401 )
24032402 tx_builder .add_output (TransactionOutput (receiver_address , output_value ))
2404- # print(tx_builder)
24052403
24062404 # Build transaction with change going back to vault
24072405 tx = tx_builder .build (change_address = vault_address , merge_change = True )
@@ -2422,4 +2420,4 @@ def test_token_transfer_with_change(chain_context):
24222420 assert (
24232421 change_output .amount .multi_asset [token_policy_id ][token_name ]
24242422 == 1876083 - 382
2425- )
2423+ )
0 commit comments