Skip to content

Commit

Permalink
tests: reduce polling interval (bitcoind, coordinatord)
Browse files Browse the repository at this point in the history
  • Loading branch information
darosior committed Oct 26, 2021
1 parent ae5c024 commit 29aeaf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_framework/revaultd.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(

f.write(f'coordinator_host = "127.0.0.1:{coordinator_port}"\n')
f.write(f'coordinator_noise_key = "{coordinator_noise_key}"\n')
f.write("coordinator_poll_seconds = 5\n")
f.write("coordinator_poll_seconds = 1\n")

f.write("[scripts_config]\n")
f.write(f'deposit_descriptor = "{deposit_desc}"\n')
Expand All @@ -68,7 +68,7 @@ def __init__(
f.write('network = "regtest"\n')
f.write(f"cookie_path = '{bitcoind_cookie}'\n")
f.write(f"addr = '127.0.0.1:{bitcoind.rpcport}'\n")
f.write("poll_interval_secs = 10\n")
f.write("poll_interval_secs = 1\n")

if stk_config is not None:
f.write("[stakeholder_config]\n")
Expand Down

0 comments on commit 29aeaf5

Please sign in to comment.