aboutsummaryrefslogtreecommitdiff
path: root/test/functional/bip68-sequence.py
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2017-07-20 23:10:37 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2017-08-28 15:18:14 +0200
commit2e6080bbf31d5cc2e38e8a7b436e8ce1857e589b (patch)
tree36f280b71163f7a43058be57b1cad7f39cf0d923 /test/functional/bip68-sequence.py
parent9b94054b7c60183cc38f1b9f3681c1770c043d77 (diff)
downloadbitcoin-2e6080bbf31d5cc2e38e8a7b436e8ce1857e589b.tar.xz
Remove unused variables and/or function calls
Diffstat (limited to 'test/functional/bip68-sequence.py')
-rwxr-xr-xtest/functional/bip68-sequence.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/bip68-sequence.py b/test/functional/bip68-sequence.py
index 87a50692f6..6968b46f73 100755
--- a/test/functional/bip68-sequence.py
+++ b/test/functional/bip68-sequence.py
@@ -387,7 +387,7 @@ class BIP68Test(BitcoinTestFramework):
tx = FromHex(CTransaction(), rawtxfund)
tx.nVersion = 2
tx_signed = self.nodes[1].signrawtransaction(ToHex(tx))["hex"]
- tx_id = self.nodes[1].sendrawtransaction(tx_signed)
+ self.nodes[1].sendrawtransaction(tx_signed)
if __name__ == '__main__':
BIP68Test().main()