diff options
| author | practicalswift <[email protected]> | 2017-01-20 22:55:26 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-01-20 22:56:11 +0100 |
| commit | 5cdf10611fe5ea77d4632c24e69e68aa9b8119e0 (patch) | |
| tree | 75f0b57b7d9d177d97e285aa2f3bc9e40bb10429 /qa/rpc-tests/p2p-segwit.py | |
| parent | Merge #9535: Split CNode::cs_vSend: message processing and message sending (diff) | |
| download | discoin-5cdf10611fe5ea77d4632c24e69e68aa9b8119e0.tar.xz discoin-5cdf10611fe5ea77d4632c24e69e68aa9b8119e0.zip | |
Remove redundant semicolons in Python code
Diffstat (limited to 'qa/rpc-tests/p2p-segwit.py')
| -rwxr-xr-x | qa/rpc-tests/p2p-segwit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/p2p-segwit.py b/qa/rpc-tests/p2p-segwit.py index 51adec5ca..a7858ad3d 100755 --- a/qa/rpc-tests/p2p-segwit.py +++ b/qa/rpc-tests/p2p-segwit.py @@ -1662,7 +1662,7 @@ class SegWitTest(BitcoinTestFramework): # too many sigops (contributing to legacy sigop count). checksig_count = (extra_sigops_available // 4) + 1 scriptPubKey_checksigs = CScript([OP_CHECKSIG]*checksig_count) - tx2.vout.append(CTxOut(0, scriptPubKey_checksigs)); + tx2.vout.append(CTxOut(0, scriptPubKey_checksigs)) tx2.vin.pop() tx2.wit.vtxinwit.pop() tx2.vout[0].nValue -= tx.vout[-2].nValue |