Skip to content

Commit

Permalink
Merge pull request #2184 from IntersectMBO/update_to_clusterlib_0.6.0a12
Browse files Browse the repository at this point in the history
Update to clusterlib v0.6.0a12
  • Loading branch information
mkoura authored Jan 23, 2024
2 parents f40d1da + cd2eaa4 commit a33a1e2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 27 deletions.
6 changes: 4 additions & 2 deletions cardano_node_tests/tests/tests_conway/test_voting.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def test_constitution(
deposit_amt = cluster.conway_genesis["govActionDeposit"]

anchor_url = "http://www.const-action.com"
anchor_data_hash = cluster.g_conway_governance.get_hash(text=anchor_url)
anchor_data_hash = cluster.g_conway_governance.get_anchor_data_hash(text=anchor_url)

constitution_file = f"{temp_template}_constitution.txt"
constitution_text = (
Expand All @@ -206,7 +206,9 @@ def test_constitution(

constitution_url = "http://www.const-new.com"
req_cli2.start(url=helpers.get_vcs_link())
constitution_hash = cluster.g_conway_governance.get_hash(file_text=constitution_file)
constitution_hash = cluster.g_conway_governance.get_anchor_data_hash(
file_text=constitution_file
)
req_cli2.success()

prev_action_rec = governance_utils.get_prev_action(
Expand Down
28 changes: 4 additions & 24 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ packages = [{include = "cardano_node_tests"}]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
allure-pytest = "^2.13.2"
cardano-clusterlib = "^0.6.0a11"
cardano-clusterlib = "^0.6.0a12"
cbor2 = "^5.4.6"
filelock = "^3.12.2"
hypothesis = "^6.82.6"
Expand Down

0 comments on commit a33a1e2

Please sign in to comment.