2016-03-19 16:58:06 -03:00
|
|
|
#!/usr/bin/env python3
|
2022-12-24 20:49:50 -03:00
|
|
|
# Copyright (c) 2014-2022 The Bitcoin Core developers
|
2015-03-11 12:58:40 -03:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-01-17 20:34:40 -03:00
|
|
|
"""Test the invalidateblock RPC."""
|
2015-03-11 12:58:40 -03:00
|
|
|
|
2015-05-02 07:53:35 -03:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2019-09-23 15:27:23 -03:00
|
|
|
from test_framework.address import ADDRESS_BCRT1_UNSPENDABLE_DESCRIPTOR
|
2024-04-23 17:36:39 -04:00
|
|
|
from test_framework.blocktools import (
|
|
|
|
create_block,
|
|
|
|
create_coinbase,
|
|
|
|
)
|
2016-08-20 17:55:41 -03:00
|
|
|
from test_framework.util import (
|
|
|
|
assert_equal,
|
2022-09-07 13:50:06 -04:00
|
|
|
assert_raises_rpc_error,
|
2016-08-20 17:55:41 -03:00
|
|
|
)
|
|
|
|
|
2015-03-11 12:58:40 -03:00
|
|
|
|
|
|
|
class InvalidateTest(BitcoinTestFramework):
|
2017-06-09 18:21:21 -04:00
|
|
|
def set_test_params(self):
|
2016-05-14 08:01:31 -03:00
|
|
|
self.setup_clean_chain = True
|
|
|
|
self.num_nodes = 3
|
|
|
|
|
2015-03-11 12:58:40 -03:00
|
|
|
def setup_network(self):
|
2017-04-03 10:34:04 -03:00
|
|
|
self.setup_nodes()
|
|
|
|
|
2015-03-11 12:58:40 -03:00
|
|
|
def run_test(self):
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("Make sure we repopulate setBlockIndexCandidates after InvalidateBlock:")
|
|
|
|
self.log.info("Mine 4 blocks on Node 0")
|
2020-11-10 14:02:31 -03:00
|
|
|
self.generate(self.nodes[0], 4, sync_fun=self.no_op)
|
2016-08-20 17:55:41 -03:00
|
|
|
assert_equal(self.nodes[0].getblockcount(), 4)
|
|
|
|
besthash_n0 = self.nodes[0].getbestblockhash()
|
2015-03-11 12:58:40 -03:00
|
|
|
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("Mine competing 6 blocks on Node 1")
|
2020-11-10 14:02:31 -03:00
|
|
|
self.generate(self.nodes[1], 6, sync_fun=self.no_op)
|
2016-08-20 17:55:41 -03:00
|
|
|
assert_equal(self.nodes[1].getblockcount(), 6)
|
2015-03-11 12:58:40 -03:00
|
|
|
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("Connect nodes to force a reorg")
|
2020-09-17 04:46:07 -03:00
|
|
|
self.connect_nodes(0, 1)
|
2019-04-06 19:19:45 -03:00
|
|
|
self.sync_blocks(self.nodes[0:2])
|
2016-08-20 17:55:41 -03:00
|
|
|
assert_equal(self.nodes[0].getblockcount(), 6)
|
2024-04-23 17:36:39 -04:00
|
|
|
|
|
|
|
# Add a header to the tip of node 0 without submitting the block. This shouldn't
|
|
|
|
# affect results since this chain will be invalidated next.
|
|
|
|
tip = self.nodes[0].getbestblockhash()
|
|
|
|
block_time = self.nodes[0].getblock(self.nodes[0].getbestblockhash())['time'] + 1
|
|
|
|
block = create_block(int(tip, 16), create_coinbase(self.nodes[0].getblockcount()), block_time, version=4)
|
|
|
|
block.solve()
|
|
|
|
self.nodes[0].submitheader(block.serialize().hex())
|
|
|
|
assert_equal(self.nodes[0].getblockchaininfo()["headers"], self.nodes[0].getblockchaininfo()["blocks"] + 1)
|
2015-03-11 12:58:40 -03:00
|
|
|
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("Invalidate block 2 on node 0 and verify we reorg to node 0's original chain")
|
2024-04-23 17:36:39 -04:00
|
|
|
badhash = self.nodes[1].getblockhash(2)
|
2015-03-11 12:58:40 -03:00
|
|
|
self.nodes[0].invalidateblock(badhash)
|
2016-08-20 17:55:41 -03:00
|
|
|
assert_equal(self.nodes[0].getblockcount(), 4)
|
|
|
|
assert_equal(self.nodes[0].getbestblockhash(), besthash_n0)
|
2024-08-14 17:28:55 -04:00
|
|
|
# Should report consistent blockchain info
|
|
|
|
assert_equal(self.nodes[0].getblockchaininfo()["headers"], self.nodes[0].getblockchaininfo()["blocks"])
|
2015-03-11 12:58:40 -03:00
|
|
|
|
2024-04-23 17:36:39 -04:00
|
|
|
self.log.info("Reconsider block 6 on node 0 again and verify that the best header is set correctly")
|
|
|
|
self.nodes[0].reconsiderblock(tip)
|
|
|
|
assert_equal(self.nodes[0].getblockchaininfo()["headers"], self.nodes[0].getblockchaininfo()["blocks"] + 1)
|
|
|
|
|
|
|
|
self.log.info("Invalidate block 2 on node 0 and verify we reorg to node 0's original chain again")
|
|
|
|
self.nodes[0].invalidateblock(badhash)
|
|
|
|
assert_equal(self.nodes[0].getblockcount(), 4)
|
|
|
|
assert_equal(self.nodes[0].getbestblockhash(), besthash_n0)
|
|
|
|
assert_equal(self.nodes[0].getblockchaininfo()["headers"], self.nodes[0].getblockchaininfo()["blocks"])
|
|
|
|
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("Make sure we won't reorg to a lower work chain:")
|
2020-09-17 04:46:07 -03:00
|
|
|
self.connect_nodes(1, 2)
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("Sync node 2 to node 1 so both have 6 blocks")
|
2019-04-06 19:19:45 -03:00
|
|
|
self.sync_blocks(self.nodes[1:3])
|
2016-08-20 17:55:41 -03:00
|
|
|
assert_equal(self.nodes[2].getblockcount(), 6)
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("Invalidate block 5 on node 1 so its tip is now at 4")
|
2015-03-12 17:03:23 -03:00
|
|
|
self.nodes[1].invalidateblock(self.nodes[1].getblockhash(5))
|
2016-08-20 17:55:41 -03:00
|
|
|
assert_equal(self.nodes[1].getblockcount(), 4)
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("Invalidate block 3 on node 2, so its tip is now 2")
|
2015-03-12 17:03:23 -03:00
|
|
|
self.nodes[2].invalidateblock(self.nodes[2].getblockhash(3))
|
2016-08-20 17:55:41 -03:00
|
|
|
assert_equal(self.nodes[2].getblockcount(), 2)
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("..and then mine a block")
|
2020-11-10 14:02:31 -03:00
|
|
|
self.generate(self.nodes[2], 1, sync_fun=self.no_op)
|
2017-03-07 20:46:17 -03:00
|
|
|
self.log.info("Verify all nodes are at the right height")
|
2020-08-17 11:50:47 -04:00
|
|
|
self.wait_until(lambda: self.nodes[2].getblockcount() == 3, timeout=5)
|
|
|
|
self.wait_until(lambda: self.nodes[0].getblockcount() == 4, timeout=5)
|
|
|
|
self.wait_until(lambda: self.nodes[1].getblockcount() == 4, timeout=5)
|
2016-08-20 17:55:41 -03:00
|
|
|
|
|
|
|
self.log.info("Verify that we reconsider all ancestors as well")
|
2020-11-10 14:02:31 -03:00
|
|
|
blocks = self.generatetodescriptor(self.nodes[1], 10, ADDRESS_BCRT1_UNSPENDABLE_DESCRIPTOR, sync_fun=self.no_op)
|
2016-08-20 17:55:41 -03:00
|
|
|
assert_equal(self.nodes[1].getbestblockhash(), blocks[-1])
|
|
|
|
# Invalidate the two blocks at the tip
|
|
|
|
self.nodes[1].invalidateblock(blocks[-1])
|
|
|
|
self.nodes[1].invalidateblock(blocks[-2])
|
|
|
|
assert_equal(self.nodes[1].getbestblockhash(), blocks[-3])
|
|
|
|
# Reconsider only the previous tip
|
|
|
|
self.nodes[1].reconsiderblock(blocks[-1])
|
|
|
|
# Should be back at the tip by now
|
|
|
|
assert_equal(self.nodes[1].getbestblockhash(), blocks[-1])
|
|
|
|
|
|
|
|
self.log.info("Verify that we reconsider all descendants")
|
2020-11-10 14:02:31 -03:00
|
|
|
blocks = self.generatetodescriptor(self.nodes[1], 10, ADDRESS_BCRT1_UNSPENDABLE_DESCRIPTOR, sync_fun=self.no_op)
|
2016-08-20 17:55:41 -03:00
|
|
|
assert_equal(self.nodes[1].getbestblockhash(), blocks[-1])
|
|
|
|
# Invalidate the two blocks at the tip
|
|
|
|
self.nodes[1].invalidateblock(blocks[-2])
|
|
|
|
self.nodes[1].invalidateblock(blocks[-4])
|
|
|
|
assert_equal(self.nodes[1].getbestblockhash(), blocks[-5])
|
|
|
|
# Reconsider only the previous tip
|
|
|
|
self.nodes[1].reconsiderblock(blocks[-4])
|
|
|
|
# Should be back at the tip by now
|
|
|
|
assert_equal(self.nodes[1].getbestblockhash(), blocks[-1])
|
2024-08-14 16:47:49 -04:00
|
|
|
# Should report consistent blockchain info
|
|
|
|
assert_equal(self.nodes[1].getblockchaininfo()["headers"], self.nodes[1].getblockchaininfo()["blocks"])
|
2016-08-20 17:55:41 -03:00
|
|
|
|
2022-09-07 13:50:06 -04:00
|
|
|
self.log.info("Verify that invalidating an unknown block throws an error")
|
|
|
|
assert_raises_rpc_error(-5, "Block not found", self.nodes[1].invalidateblock, "00" * 32)
|
2022-09-09 12:10:07 -04:00
|
|
|
assert_equal(self.nodes[1].getbestblockhash(), blocks[-1])
|
2022-09-07 13:50:06 -04:00
|
|
|
|
2015-03-12 17:03:23 -03:00
|
|
|
|
2015-03-11 12:58:40 -03:00
|
|
|
if __name__ == '__main__':
|
2024-07-16 17:05:14 -04:00
|
|
|
InvalidateTest(__file__).main()
|