diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-03-29 17:47:06 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-03-29 17:47:12 +0200 |
commit | 169f3e8637b5a40b82a06f4b951e7896d70fe220 (patch) | |
tree | 67263ad98e2339d2c41c48d11d1ecd0c9772abb8 /test/functional/p2p_segwit.py | |
parent | f0f9732d05d79a0c0a69cd0e5b1a074acad40265 (diff) |
Remove assigned but never used local variables
Diffstat (limited to 'test/functional/p2p_segwit.py')
-rwxr-xr-x | test/functional/p2p_segwit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/p2p_segwit.py b/test/functional/p2p_segwit.py index e6af35fc3d..5546bf6b29 100755 --- a/test/functional/p2p_segwit.py +++ b/test/functional/p2p_segwit.py @@ -833,7 +833,7 @@ class SegWitTest(BitcoinTestFramework): self.test_node.announce_tx_and_wait_for_getdata(tx, timeout=2) self.log.error("Error: duplicate tx getdata!") assert(False) - except AssertionError as e: + except AssertionError: pass # Delivering this transaction with witness should fail (no matter who |