You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
4.9 KiB
125 lines
4.9 KiB
9 years ago
|
#!/usr/bin/env python3
|
||
|
# Copyright (c) 2014-2016 The Bitcoin Core developers
|
||
10 years ago
|
# Distributed under the MIT software license, see the accompanying
|
||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
8 years ago
|
"""Test mining RPCs
|
||
|
|
||
|
- getblocktemplate proposal mode
|
||
|
- submitblock"""
|
||
10 years ago
|
|
||
8 years ago
|
from binascii import b2a_hex
|
||
|
import copy
|
||
10 years ago
|
|
||
8 years ago
|
from test_framework.blocktools import create_coinbase
|
||
8 years ago
|
from test_framework.test_framework import BitcoinTestFramework
|
||
8 years ago
|
from test_framework.mininode import CBlock
|
||
8 years ago
|
from test_framework.util import *
|
||
|
|
||
10 years ago
|
def b2x(b):
|
||
|
return b2a_hex(b).decode('ascii')
|
||
|
|
||
8 years ago
|
def assert_template(node, block, expect, rehash=True):
|
||
|
if rehash:
|
||
|
block.hashMerkleRoot = block.calc_merkle_root()
|
||
|
rsp = node.getblocktemplate({'data': b2x(block.serialize()), 'mode': 'proposal'})
|
||
8 years ago
|
assert_equal(rsp, expect)
|
||
10 years ago
|
|
||
8 years ago
|
class MiningTest(BitcoinTestFramework):
|
||
10 years ago
|
|
||
9 years ago
|
def __init__(self):
|
||
|
super().__init__()
|
||
|
self.num_nodes = 2
|
||
|
self.setup_clean_chain = False
|
||
|
|
||
10 years ago
|
def run_test(self):
|
||
|
node = self.nodes[0]
|
||
8 years ago
|
# Mine a block to leave initial block download
|
||
|
node.generate(1)
|
||
10 years ago
|
tmpl = node.getblocktemplate()
|
||
8 years ago
|
self.log.info("getblocktemplate: Test capability advertised")
|
||
|
assert 'proposal' in tmpl['capabilities']
|
||
8 years ago
|
assert 'coinbasetxn' not in tmpl
|
||
|
|
||
|
coinbase_tx = create_coinbase(height=int(tmpl["height"]) + 1)
|
||
|
# sequence numbers must not be max for nLockTime to have effect
|
||
|
coinbase_tx.vin[0].nSequence = 2 ** 32 - 2
|
||
8 years ago
|
coinbase_tx.rehash()
|
||
10 years ago
|
|
||
8 years ago
|
block = CBlock()
|
||
|
block.nVersion = tmpl["version"]
|
||
|
block.hashPrevBlock = int(tmpl["previousblockhash"], 16)
|
||
|
block.nTime = tmpl["curtime"]
|
||
|
block.nBits = int(tmpl["bits"], 16)
|
||
|
block.nNonce = 0
|
||
|
block.vtx = [coinbase_tx]
|
||
10 years ago
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test valid block")
|
||
|
assert_template(node, block, None)
|
||
|
|
||
8 years ago
|
self.log.info("submitblock: Test block decode failure")
|
||
|
assert_raises_jsonrpc(-22, "Block decode failed", node.submitblock, b2x(block.serialize()[:-15]))
|
||
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test bad input hash for coinbase transaction")
|
||
8 years ago
|
bad_block = copy.deepcopy(block)
|
||
|
bad_block.vtx[0].vin[0].prevout.hash += 1
|
||
|
bad_block.vtx[0].rehash()
|
||
|
assert_template(node, bad_block, 'bad-cb-missing')
|
||
|
|
||
8 years ago
|
self.log.info("submitblock: Test invalid coinbase transaction")
|
||
|
assert_raises_jsonrpc(-22, "Block does not start with a coinbase", node.submitblock, b2x(bad_block.serialize()))
|
||
10 years ago
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test truncated final transaction")
|
||
8 years ago
|
assert_raises_jsonrpc(-22, "Block decode failed", node.getblocktemplate, {'data': b2x(block.serialize()[:-1]), 'mode': 'proposal'})
|
||
10 years ago
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test duplicate transaction")
|
||
8 years ago
|
bad_block = copy.deepcopy(block)
|
||
|
bad_block.vtx.append(bad_block.vtx[0])
|
||
|
assert_template(node, bad_block, 'bad-txns-duplicate')
|
||
10 years ago
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test invalid transaction")
|
||
8 years ago
|
bad_block = copy.deepcopy(block)
|
||
|
bad_tx = copy.deepcopy(bad_block.vtx[0])
|
||
|
bad_tx.vin[0].prevout.hash = 255
|
||
|
bad_tx.rehash()
|
||
|
bad_block.vtx.append(bad_tx)
|
||
|
assert_template(node, bad_block, 'bad-txns-inputs-missingorspent')
|
||
10 years ago
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test nonfinal transaction")
|
||
8 years ago
|
bad_block = copy.deepcopy(block)
|
||
|
bad_block.vtx[0].nLockTime = 2 ** 32 - 1
|
||
|
bad_block.vtx[0].rehash()
|
||
|
assert_template(node, bad_block, 'bad-txns-nonfinal')
|
||
10 years ago
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test bad tx count")
|
||
8 years ago
|
# The tx count is immediately after the block header
|
||
|
TX_COUNT_OFFSET = 80
|
||
|
bad_block_sn = bytearray(block.serialize())
|
||
|
assert_equal(bad_block_sn[TX_COUNT_OFFSET], 1)
|
||
|
bad_block_sn[TX_COUNT_OFFSET] += 1
|
||
|
assert_raises_jsonrpc(-22, "Block decode failed", node.getblocktemplate, {'data': b2x(bad_block_sn), 'mode': 'proposal'})
|
||
10 years ago
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test bad bits")
|
||
8 years ago
|
bad_block = copy.deepcopy(block)
|
||
|
bad_block.nBits = 469762303 # impossible in the real world
|
||
|
assert_template(node, bad_block, 'bad-diffbits')
|
||
10 years ago
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test bad merkle root")
|
||
8 years ago
|
bad_block = copy.deepcopy(block)
|
||
|
bad_block.hashMerkleRoot += 1
|
||
|
assert_template(node, bad_block, 'bad-txnmrklroot', False)
|
||
10 years ago
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test bad timestamps")
|
||
8 years ago
|
bad_block = copy.deepcopy(block)
|
||
|
bad_block.nTime = 2 ** 31 - 1
|
||
|
assert_template(node, bad_block, 'time-too-new')
|
||
|
bad_block.nTime = 0
|
||
|
assert_template(node, bad_block, 'time-too-old')
|
||
10 years ago
|
|
||
8 years ago
|
self.log.info("getblocktemplate: Test not best block")
|
||
8 years ago
|
bad_block = copy.deepcopy(block)
|
||
|
bad_block.hashPrevBlock = 123
|
||
|
assert_template(node, bad_block, 'inconclusive-not-best-prevblk')
|
||
10 years ago
|
|
||
|
if __name__ == '__main__':
|
||
8 years ago
|
MiningTest().main()
|