From 85b8b440bb19156dfd9fac80af6c83107b031710 Mon Sep 17 00:00:00 2001 From: Michael Schmoock Date: Tue, 29 Jun 2021 10:19:43 +0200 Subject: [PATCH] drain: a comment about necessary code duplication --- drain/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drain/utils.py b/drain/utils.py index aad138a..082956d 100644 --- a/drain/utils.py +++ b/drain/utils.py @@ -3,6 +3,8 @@ import time TIMEOUT = 60 +# we need to have this pyln.testing.utils code duplication +# as this also needs to be run without testing libs def wait_for(success, timeout=TIMEOUT): start_time = time.time() interval = 0.25