aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/p2p-feefilter.py
diff options
context:
space:
mode:
Diffstat (limited to 'qa/rpc-tests/p2p-feefilter.py')
-rwxr-xr-xqa/rpc-tests/p2p-feefilter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/qa/rpc-tests/p2p-feefilter.py b/qa/rpc-tests/p2p-feefilter.py
index 96d99d38a7..86ce0b42e6 100755
--- a/qa/rpc-tests/p2p-feefilter.py
+++ b/qa/rpc-tests/p2p-feefilter.py
@@ -21,9 +21,9 @@ def allInvsMatch(invsExpected, testnode):
for x in range(60):
with mininode_lock:
if (sorted(invsExpected) == sorted(testnode.txinvs)):
- return True;
+ return True
time.sleep(1)
- return False;
+ return False
# TestNode: bare-bones "peer". Used to track which invs are received from a node
# and to send the node feefilter messages.