aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/p2p-feefilter.py
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-01-23 13:22:32 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2017-01-23 14:02:54 +0100
commit5cf3c60fccb198c16819fcf8a0c5635b5b630496 (patch)
tree27b9895584ceaff9e65ab1f4be0c65aa5dcfe476 /qa/rpc-tests/p2p-feefilter.py
parent78849564144e073802a3858b953e2026e27d3047 (diff)
parent5cdf10611fe5ea77d4632c24e69e68aa9b8119e0 (diff)
downloadbitcoin-5cf3c60fccb198c16819fcf8a0c5635b5b630496.tar.xz
Merge #9607: Remove redundant semicolons in Python code
5cdf106 Remove redundant semicolons in Python code (practicalswift)
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.