Skip to content

Commit

Permalink
Merge pull request IntersectMBO#2226 from saratomaz/update_test_pools
Browse files Browse the repository at this point in the history
Update test_pools.py to work with conway
  • Loading branch information
mkoura authored Feb 16, 2024
2 parents 4e61dc0 + 059b83b commit 2a4e843
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cardano_node_tests/tests/test_pools.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,9 @@ def _create_register_pool_delegate_stake_tx(
# create stake address registration certs
stake_addr_reg_cert_files = [
cluster_obj.g_stake_address.gen_stake_addr_registration_cert(
addr_name=f"{temp_template}_addr{i}", stake_vkey_file=p.stake.vkey_file
addr_name=f"{temp_template}_addr{i}",
stake_vkey_file=p.stake.vkey_file,
deposit_amt=common.get_conway_address_deposit(cluster_obj=cluster_obj),
)
for i, p in enumerate(pool_owners)
]
Expand Down Expand Up @@ -553,7 +555,9 @@ def _create_register_pool_tx_delegate_stake_tx(
# create stake address registration certs
stake_addr_reg_cert_files = [
cluster_obj.g_stake_address.gen_stake_addr_registration_cert(
addr_name=f"{temp_template}_addr{i}", stake_vkey_file=p.stake.vkey_file
addr_name=f"{temp_template}_addr{i}",
stake_vkey_file=p.stake.vkey_file,
deposit_amt=common.get_conway_address_deposit(cluster_obj=cluster_obj),
)
for i, p in enumerate(pool_owners)
]
Expand Down

0 comments on commit 2a4e843

Please sign in to comment.