Skip to content

Commit d636850

Browse files
authored
Merge pull request #1301 from mkoura/update_clusterlib_0_3_0rc14
Update to clusterlib 0.3.0rc14
2 parents 1552434 + 3721d07 commit d636850

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
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,

nix/cardano-clusterlib.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
buildPythonPackage rec {
44
pname = "cardano-clusterlib";
5-
version = "0.3.0rc13";
5+
version = "0.3.0rc14";
66
src = fetchPypi {
77
inherit pname version;
8-
sha256 = "2BsVkJmzyJJ/pAAtoNAmhTJeIRQUaY6ocAtlD7jglt4=";
8+
sha256 = "RG186mU6rpPc0zq07Ci2mZUwn2VGZJBol0uKazUAJ0E=";
99
};
1010
doCheck = false;
1111
nativeBuildInputs = [ setuptools_scm ];

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ setup_requires =
3232
setuptools_scm
3333
install_requires =
3434
allure-pytest
35-
cardano-clusterlib >= 0.3.0rc13,<0.4.0
35+
cardano-clusterlib >= 0.3.0rc14,<0.4.0
3636
cbor2
3737
filelock
3838
hypothesis

0 commit comments

Comments
 (0)