Skip to content

Commit

Permalink
Remove unneeded change addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoura committed Jun 21, 2022
1 parent d186060 commit b24ab1d
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions cardano_node_tests/tests/test_plutus_v2_spend_build.py
Expand Up @@ -261,7 +261,6 @@ def test_txout_locking(
tx_files=tx_files_redeem,
txouts=txouts_redeem,
script_txins=plutus_txins,
change_address=payment_addrs[0].address,
)

tx_signed = cluster.sign_tx(
Expand Down Expand Up @@ -393,7 +392,6 @@ def test_lock_tx_v1_script(
tx_files=tx_files_redeem,
txouts=txouts_redeem,
script_txins=plutus_txins,
change_address=payment_addrs[0].address,
)
err_str = str(excinfo.value)
assert (
Expand Down Expand Up @@ -490,7 +488,6 @@ def test_lock_tx_datum_as_witness(
tx_files=tx_files_redeem,
txouts=txouts_redeem,
script_txins=plutus_txins,
change_address=payment_addrs[0].address,
)

tx_signed = cluster.sign_tx(
Expand Down Expand Up @@ -651,7 +648,6 @@ def test_reference_multiple_script(
tx_files=tx_files_redeem,
txouts=txouts_redeem,
script_txins=plutus_txins,
change_address=payment_addrs[0].address,
)

tx_signed = cluster.sign_tx(
Expand Down Expand Up @@ -795,7 +791,6 @@ def test_reference_same_script(
tx_files=tx_files_redeem,
txouts=txouts_redeem,
script_txins=plutus_txins,
change_address=payment_addrs[0].address,
)

tx_signed = cluster.sign_tx(
Expand Down Expand Up @@ -943,7 +938,6 @@ def test_mix_reference_attached_script(
tx_files=tx_files_redeem,
txouts=txouts_redeem,
script_txins=plutus_txins,
change_address=payment_addrs[0].address,
)

tx_signed = cluster.sign_tx(
Expand Down Expand Up @@ -1138,7 +1132,6 @@ def test_two_scripts_one_fail(
tx_files=tx_files_redeem,
txouts=txouts_redeem,
script_txins=plutus_txins,
change_address=payment_addrs[0].address,
)
err_str = str(excinfo.value)
assert "The Plutus script evaluation failed" in err_str, err_str
Expand Down Expand Up @@ -1209,7 +1202,6 @@ def test_lock_tx_v1_reference_script(
tx_files=tx_files_redeem,
txouts=txouts_redeem,
script_txins=plutus_txins,
change_address=payment_addrs[0].address,
)
err_str = str(excinfo.value)
assert "ReferenceInputsNotSupported" in err_str, err_str
Expand Down Expand Up @@ -1347,7 +1339,6 @@ def test_v1_attached_v2_reference(
tx_files=tx_files_redeem,
txouts=txouts_redeem,
script_txins=plutus_txins,
change_address=payment_addrs[0].address,
)
err_str = str(excinfo.value)
assert "ReferenceInputsNotSupported" in err_str, err_str

0 comments on commit b24ab1d

Please sign in to comment.