aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-04-11 13:05:41 -0400
committerJohn Newbery <john@johnnewbery.com>2017-06-27 15:51:37 +0100
commit0a3a5ff454643d148e5a68c12393fa4e187af157 (patch)
tree1c45507a325ef4e5cef78bb42357286a2c39ab7c /test
parent32cffe6bef8974db6bf1536a24bce8c2b2304c52 (diff)
downloadbitcoin-0a3a5ff454643d148e5a68c12393fa4e187af157.tar.xz
[tests] Fix flake8 warnings in getblocktemplate tests
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/getblocktemplate_proposals.py23
1 files changed, 9 insertions, 14 deletions
diff --git a/test/functional/getblocktemplate_proposals.py b/test/functional/getblocktemplate_proposals.py
index 304eaa20e9..51b4dc33e3 100755
--- a/test/functional/getblocktemplate_proposals.py
+++ b/test/functional/getblocktemplate_proposals.py
@@ -43,7 +43,7 @@ def genmrklroot(leaflist):
if len(cur) & 1:
cur.append(cur[-1])
for i in range(0, len(cur), 2):
- n.append(dblsha(cur[i] + cur[i+1]))
+ n.append(dblsha(cur[i] + cur[i + 1]))
cur = n
return cur[0]
@@ -62,7 +62,7 @@ def template_to_hex(tmpl, txlist):
return b2x(template_to_bytearray(tmpl, txlist))
def assert_template(node, tmpl, txlist, expect):
- rsp = node.getblocktemplate({'data':template_to_hex(tmpl, txlist),'mode':'proposal'})
+ rsp = node.getblocktemplate({'data': template_to_hex(tmpl, txlist), 'mode': 'proposal'})
if rsp != expect:
raise AssertionError('unexpected: %s' % (rsp,))
@@ -75,7 +75,8 @@ class GetBlockTemplateProposalTest(BitcoinTestFramework):
def run_test(self):
node = self.nodes[0]
- node.generate(1) # Mine a block to leave initial block download
+ # Mine a block to leave initial block download
+ node.generate(1)
tmpl = node.getblocktemplate()
if 'coinbasetxn' not in tmpl:
rawcoinbase = encodeUNum(tmpl['height'])
@@ -88,16 +89,10 @@ class GetBlockTemplateProposalTest(BitcoinTestFramework):
# Test 0: Capability advertised
assert('proposal' in tmpl['capabilities'])
- # NOTE: This test currently FAILS (regtest mode doesn't enforce block height in coinbase)
- ## Test 1: Bad height in coinbase
- #txlist[0][4+1+36+1+1] += 1
- #assert_template(node, tmpl, txlist, 'FIXME')
- #txlist[0][4+1+36+1+1] -= 1
-
# Test 2: Bad input hash for gen tx
- txlist[0][4+1] += 1
+ txlist[0][4 + 1] += 1
assert_template(node, tmpl, txlist, 'bad-cb-missing')
- txlist[0][4+1] -= 1
+ txlist[0][4 + 1] -= 1
# Test 3: Truncated final tx
lastbyte = txlist[-1].pop()
@@ -111,7 +106,7 @@ class GetBlockTemplateProposalTest(BitcoinTestFramework):
# Test 5: Add an invalid tx to the end (non-duplicate)
txlist.append(bytearray(txlist[0]))
- txlist[-1][4+1] = 0xff
+ txlist[-1][4 + 1] = 0xff
assert_template(node, tmpl, txlist, 'bad-txns-inputs-missingorspent')
txlist.pop()
@@ -133,8 +128,8 @@ class GetBlockTemplateProposalTest(BitcoinTestFramework):
# Test 9: Bad merkle root
rawtmpl = template_to_bytearray(tmpl, txlist)
- rawtmpl[4+32] = (rawtmpl[4+32] + 1) % 0x100
- rsp = node.getblocktemplate({'data':b2x(rawtmpl),'mode':'proposal'})
+ rawtmpl[4 + 32] = (rawtmpl[4 + 32] + 1) % 0x100
+ rsp = node.getblocktemplate({'data': b2x(rawtmpl), 'mode': 'proposal'})
if rsp != 'bad-txnmrklroot':
raise AssertionError('unexpected: %s' % (rsp,))