Skip to content

Commit 3721d07

Browse files
committed
Changes needed after updating to clusterlib 0.3.0rc14
1 parent 0a0f4a1 commit 3721d07

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

cardano_node_tests/tests/test_transactions.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1478,17 +1478,18 @@ def test_mini_transactions(
14781478
break
14791479

14801480
# build, sign and submit the transaction
1481-
txins_filtered, txouts_balanced = cluster.get_tx_ins_outs(
1481+
data_for_build = clusterlib.collect_data_for_build(
1482+
clusterlib_obj=cluster,
14821483
src_address=src_address,
1483-
tx_files=tx_files,
14841484
txins=txins_optimized,
14851485
txouts=destinations,
14861486
fee=fee,
1487+
tx_files=tx_files,
14871488
)
14881489
tx_raw_output = cluster.build_raw_tx_bare(
14891490
out_file=f"{temp_template}_tx.body",
1490-
txins=txins_filtered,
1491-
txouts=txouts_balanced,
1491+
txins=data_for_build.txins,
1492+
txouts=data_for_build.txouts,
14921493
tx_files=tx_files,
14931494
fee=fee,
14941495
ttl=ttl,

0 commit comments

Comments
 (0)