diff options
author | John Bampton <jbampton@users.noreply.github.com> | 2018-05-11 01:28:27 +1000 |
---|---|---|
committer | John Bampton <jbampton@users.noreply.github.com> | 2018-05-11 07:59:05 +1000 |
commit | 0d31ef4762f5a1428a57439d26551a99f15ddc2e (patch) | |
tree | b2943f8b56ffef8d12fdf8d79ed9d04cd8a8c62b /test/functional/feature_bip68_sequence.py | |
parent | 1c582503507b72306be1355738f1d853e499bd15 (diff) |
Enable W191 and W291 flake8 checks.
Remove trailing whitespace from Python files.
Convert tabs to spaces.
Diffstat (limited to 'test/functional/feature_bip68_sequence.py')
-rwxr-xr-x | test/functional/feature_bip68_sequence.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_bip68_sequence.py b/test/functional/feature_bip68_sequence.py index eee38ce648..6d8d9843eb 100755 --- a/test/functional/feature_bip68_sequence.py +++ b/test/functional/feature_bip68_sequence.py @@ -67,7 +67,7 @@ class BIP68Test(BitcoinTestFramework): # If sequence locks were used, this would require 1 block for the # input to mature. sequence_value = SEQUENCE_LOCKTIME_DISABLE_FLAG | 1 - tx1.vin = [CTxIn(COutPoint(int(utxo["txid"], 16), utxo["vout"]), nSequence=sequence_value)] + tx1.vin = [CTxIn(COutPoint(int(utxo["txid"], 16), utxo["vout"]), nSequence=sequence_value)] tx1.vout = [CTxOut(value, CScript([b'a']))] tx1_signed = self.nodes[0].signrawtransactionwithwallet(ToHex(tx1))["hex"] |