Skip to content

Commit fb9bbec

Browse files
authored
Merge pull request #2960 from IntersectMBO/decrease_script_funding
fix(tests): decrease script funding amounts
2 parents 264347c + 9345f7d commit fb9bbec

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cardano_node_tests/tests/tests_plutus/test_mint_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def test_minting_missing_txout(
259259
issuer_addr = payment_addrs[1]
260260

261261
token_amount = 5
262-
script_fund = 10_000_000
262+
script_fund = 5_000_000
263263

264264
plutus_v_record = plutus_common.MINTING_PLUTUS[plutus_version]
265265

cardano_node_tests/tests/tests_plutus/test_spend_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ def test_txout_token_locking(
811811
dst_addr=payment_addrs[1],
812812
plutus_op=plutus_op,
813813
tokens=tokens_rec,
814-
amount=10_000_000,
814+
amount=5_000_000,
815815
)
816816

817817
__, tx_output_spend, plutus_costs = spend_build._build_spend_locked_txin(

cardano_node_tests/tests/tests_plutus_v2/test_mint_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def test_minting_ref_missing_txout(
268268
issuer_addr = payment_addrs[1]
269269

270270
token_amount = 5
271-
script_fund = 10_000_000
271+
script_fund = 5_000_000
272272

273273
plutus_v_record = plutus_common.MINTING_PLUTUS[plutus_version]
274274

0 commit comments

Comments
 (0)