aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/blockstore.py
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-03-29 17:47:06 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-03-29 17:47:12 +0200
commit169f3e8637b5a40b82a06f4b951e7896d70fe220 (patch)
tree67263ad98e2339d2c41c48d11d1ecd0c9772abb8 /test/functional/test_framework/blockstore.py
parentf0f9732d05d79a0c0a69cd0e5b1a074acad40265 (diff)
downloadbitcoin-169f3e8637b5a40b82a06f4b951e7896d70fe220.tar.xz
Remove assigned but never used local variables
Diffstat (limited to 'test/functional/test_framework/blockstore.py')
-rw-r--r--test/functional/test_framework/blockstore.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/test_framework/blockstore.py b/test/functional/test_framework/blockstore.py
index 6067a407cc..6073285a6c 100644
--- a/test/functional/test_framework/blockstore.py
+++ b/test/functional/test_framework/blockstore.py
@@ -87,7 +87,7 @@ class BlockStore():
block.calc_sha256()
try:
self.blockDB[repr(block.sha256)] = bytes(block.serialize())
- except TypeError as e:
+ except TypeError:
logger.exception("Unexpected error")
self.currentBlock = block.sha256
self.headers_map[block.sha256] = CBlockHeader(block)
@@ -147,7 +147,7 @@ class TxStore():
tx.calc_sha256()
try:
self.txDB[repr(tx.sha256)] = bytes(tx.serialize())
- except TypeError as e:
+ except TypeError:
logger.exception("Unexpected error")
def get_transactions(self, inv):