File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -1478,17 +1478,18 @@ def test_mini_transactions(
1478
1478
break
1479
1479
1480
1480
# 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 ,
1482
1483
src_address = src_address ,
1483
- tx_files = tx_files ,
1484
1484
txins = txins_optimized ,
1485
1485
txouts = destinations ,
1486
1486
fee = fee ,
1487
+ tx_files = tx_files ,
1487
1488
)
1488
1489
tx_raw_output = cluster .build_raw_tx_bare (
1489
1490
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 ,
1492
1493
tx_files = tx_files ,
1493
1494
fee = fee ,
1494
1495
ttl = ttl ,
Original file line number Diff line number Diff line change 2
2
3
3
buildPythonPackage rec {
4
4
pname = "cardano-clusterlib" ;
5
- version = "0.3.0rc13 " ;
5
+ version = "0.3.0rc14 " ;
6
6
src = fetchPypi {
7
7
inherit pname version ;
8
- sha256 = "2BsVkJmzyJJ/pAAtoNAmhTJeIRQUaY6ocAtlD7jglt4 =" ;
8
+ sha256 = "RG186mU6rpPc0zq07Ci2mZUwn2VGZJBol0uKazUAJ0E =" ;
9
9
} ;
10
10
doCheck = false ;
11
11
nativeBuildInputs = [ setuptools_scm ] ;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ setup_requires =
32
32
setuptools_scm
33
33
install_requires =
34
34
allure-pytest
35
- cardano-clusterlib >= 0.3.0rc13 ,<0.4.0
35
+ cardano-clusterlib >= 0.3.0rc14 ,<0.4.0
36
36
cbor2
37
37
filelock
38
38
hypothesis
You can’t perform that action at this time.
0 commit comments