We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a0f4a1 commit 3721d07Copy full SHA for 3721d07
cardano_node_tests/tests/test_transactions.py
@@ -1478,17 +1478,18 @@ def test_mini_transactions(
1478
break
1479
1480
# build, sign and submit the transaction
1481
- txins_filtered, txouts_balanced = cluster.get_tx_ins_outs(
+ data_for_build = clusterlib.collect_data_for_build(
1482
+ clusterlib_obj=cluster,
1483
src_address=src_address,
- tx_files=tx_files,
1484
txins=txins_optimized,
1485
txouts=destinations,
1486
fee=fee,
1487
+ tx_files=tx_files,
1488
)
1489
tx_raw_output = cluster.build_raw_tx_bare(
1490
out_file=f"{temp_template}_tx.body",
- txins=txins_filtered,
1491
- txouts=txouts_balanced,
+ txins=data_for_build.txins,
1492
+ txouts=data_for_build.txouts,
1493
tx_files=tx_files,
1494
1495
ttl=ttl,
0 commit comments