Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

itest: ensure nodes are synced to chain #14

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading