aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/p2p-mempool.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-10-01 11:36:25 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-10-03 10:59:49 +0200
commit1f60d455048b7c0af6a5fdc032022d3fac37e790 (patch)
tree9fe1a09ec3aca09ef5f1c7e900dfc60572cd2c82 /qa/rpc-tests/p2p-mempool.py
parent624a007f476027457b32e0bd42584e67bb003317 (diff)
downloadbitcoin-1f60d455048b7c0af6a5fdc032022d3fac37e790.tar.xz
[qa] mininode: Only allow named args in wait_until
Github-Pull: #8857 Rebased-From: fa666094cf5b9ac4a7c1732a7ffa001afffcd938
Diffstat (limited to 'qa/rpc-tests/p2p-mempool.py')
-rwxr-xr-xqa/rpc-tests/p2p-mempool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/p2p-mempool.py b/qa/rpc-tests/p2p-mempool.py
index 5d2daf39f8..80948426d9 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