Skip to content

Commit

Permalink
fix(tests): add enough funds for two deposits
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoura committed Nov 26, 2024
1 parent 0b1b121 commit 2b61f52
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion cardano_node_tests/tests/tests_conway/test_drep.py
Original file line number Diff line number Diff line change
Expand Up @@ -978,8 +978,8 @@ def test_drep_no_retirement_before_register(
@pytest.mark.smoke
def test_drep_no_multiple_registration(
self,
cluster_manager: cluster_management.ClusterManager,
cluster: clusterlib.ClusterLib,
payment_addr: clusterlib.AddressRecord,
use_build_cmd: bool,
submit_method: str,
):
Expand All @@ -999,6 +999,13 @@ def test_drep_no_multiple_registration(
drep_metadata_file=drep_metadata_file
)

payment_addr = get_payment_addr(
name_template=temp_template,
cluster_manager=cluster_manager,
cluster_obj=cluster,
amount=cluster.conway_genesis["dRepDeposit"] * 2 + 10_000_000,
)

reqc.cip090.start(url=helpers.get_vcs_link())
reg_drep = governance_utils.get_drep_reg_record(
cluster_obj=cluster,
Expand Down

0 comments on commit 2b61f52

Please sign in to comment.