diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-12-04 10:31:24 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-12-04 10:32:00 +0100 |
commit | fab48da908f3f81135b9163edf5011d1e5f6ef6e (patch) | |
tree | 13f429af5b200b1b1174e40b7e5bcee76fef7beb /test/functional/wallet_multiwallet.py | |
parent | fa8e15f7b75e35846b86e8627a3612e31eb22dcb (diff) |
test: Fix intermittent wallet_multiwallet issue with got_loading_error
Diffstat (limited to 'test/functional/wallet_multiwallet.py')
-rwxr-xr-x | test/functional/wallet_multiwallet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_multiwallet.py b/test/functional/wallet_multiwallet.py index 3b1c87efaf..bb89e76a9a 100755 --- a/test/functional/wallet_multiwallet.py +++ b/test/functional/wallet_multiwallet.py @@ -27,7 +27,7 @@ got_loading_error = False def test_load_unload(node, name): global got_loading_error - for _ in range(10): + while True: if got_loading_error: return try: |