diff options
| author | MarcoFalke <[email protected]> | 2016-10-01 11:36:25 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-10-02 12:21:14 +0200 |
| commit | fa666094cf5b9ac4a7c1732a7ffa001afffcd938 (patch) | |
| tree | dfd0360b6b7dabfa04534e8a9e54f5c0e23504dd /qa/rpc-tests/p2p-mempool.py | |
| parent | Merge #8854: [qa] Fix race condition in p2p-compactblocks test (diff) | |
| download | discoin-fa666094cf5b9ac4a7c1732a7ffa001afffcd938.tar.xz discoin-fa666094cf5b9ac4a7c1732a7ffa001afffcd938.zip | |
[qa] mininode: Only allow named args in wait_until
Diffstat (limited to 'qa/rpc-tests/p2p-mempool.py')
| -rwxr-xr-x | qa/rpc-tests/p2p-mempool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/p2p-mempool.py b/qa/rpc-tests/p2p-mempool.py index 5c5d778f4..382d7f1e8 100755 --- a/qa/rpc-tests/p2p-mempool.py +++ b/qa/rpc-tests/p2p-mempool.py @@ -63,7 +63,7 @@ class TestNode(NodeConnCB): def received_pong(): return (self.last_pong.nonce == self.ping_counter) self.connection.send_message(msg_ping(nonce=self.ping_counter)) - success = wait_until(received_pong, timeout) + success = wait_until(received_pong, timeout=timeout) self.ping_counter += 1 return success |