aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2017-03-28 15:19:19 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2017-03-28 15:19:19 +0200
commitbd024223320707af676019d874b61307656f7dc1 (patch)
treefcfc510480135844b4c83682fc161e8789446de9
parent5b029aaedb5fcf7cadd249607dd28eb3f233ab8c (diff)
downloadbitcoin-bd024223320707af676019d874b61307656f7dc1.tar.xz
Remove accidental trailing semicolons in Python code
-rwxr-xr-xcontrib/zmq/zmq_sub3.4.py2
-rwxr-xr-xtest/functional/importmulti.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/zmq/zmq_sub3.4.py b/contrib/zmq/zmq_sub3.4.py
index a2ff64b29b..1cb7eec0c0 100755
--- a/contrib/zmq/zmq_sub3.4.py
+++ b/contrib/zmq/zmq_sub3.4.py
@@ -57,7 +57,7 @@ class ZMQHandler():
msg = yield from self.zmqSubSocket.recv_multipart()
topic = msg[0]
body = msg[1]
- sequence = "Unknown";
+ sequence = "Unknown"
if len(msg[-1]) == 4:
msgSequence = struct.unpack('<I', msg[-1])[-1]
sequence = str(msgSequence)
diff --git a/test/functional/importmulti.py b/test/functional/importmulti.py
index aa03c6780a..e049302632 100755
--- a/test/functional/importmulti.py
+++ b/test/functional/importmulti.py
@@ -434,7 +434,7 @@ class ImportMultiTest (BitcoinTestFramework):
address_assert = self.nodes[1].validateaddress(watchonly_address)
assert_equal(address_assert['iswatchonly'], True)
assert_equal(address_assert['ismine'], False)
- assert_equal(address_assert['timestamp'], watchonly_timestamp);
+ assert_equal(address_assert['timestamp'], watchonly_timestamp)
# Bad or missing timestamps
self.log.info("Should throw on invalid or missing timestamp values")