From 727f4d9a29fb5afebc1807360476b66eb1be6978 Mon Sep 17 00:00:00 2001 From: Duke Date: Fri, 22 Aug 2025 11:33:13 -0400 Subject: [PATCH] Sleep as a hack for lacking fullyNotified in some places --- qa/rpc-tests/lockzins.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/qa/rpc-tests/lockzins.py b/qa/rpc-tests/lockzins.py index 314bcdb3f..e71c8cfcd 100755 --- a/qa/rpc-tests/lockzins.py +++ b/qa/rpc-tests/lockzins.py @@ -94,14 +94,15 @@ class LockZinsTest (BitcoinTestFramework): rpc.generate(1) self.sync_all() + + # syncing is not perfect, oh well + time.sleep(3) + wait_and_assert_operationid_status(self.nodes[0], opid1) wait_and_assert_operationid_status(self.nodes[0], opid2) wait_and_assert_operationid_status(self.nodes[0], opid3) wait_and_assert_operationid_status(self.nodes[0], opid4) - # give time for all z_sendmany's to run - #time.sleep(10) - rpc.z_getoperationstatus() if __name__ == '__main__':