Skip to content

Commit

Permalink
itest: ensure nodes are synced to chain
Browse files Browse the repository at this point in the history
  • Loading branch information
JssDWt committed Dec 20, 2024
1 parent f290b7d commit 2c57a70
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions itest/tests/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
hodl_plugin_path = os.path.join(os.path.dirname(__file__), "hodl_plugin.py")


def ensure_synced(nodes):
for node in nodes:
if not node.is_synced_with_bitcoin(node.info):
wait_for(lambda: node.is_synced_with_bitcoin())


def connect_nodes(sender, trampoline, recipient):
sender.openchannel(trampoline, 1000000)
trampoline.openchannel(recipient, 1000000)
Expand Down Expand Up @@ -56,6 +62,7 @@ def setup(
raise

connect_nodes(sender, trampoline, recipient)
ensure_synced([sender, trampoline, recipient])
return sender, trampoline, recipient


Expand Down

0 comments on commit 2c57a70

Please sign in to comment.