mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
Merge bitcoin/bitcoin#22120: test: p2p_invalid_block: Check that a block rejected due to too-new tim…
754e802274e9373ad7e1dccb710acf74ded6e7fb test: check rejected future block later accepted (Luke Dashjr) Pull request description: (Luke) was unsure if the code sufficiently avoided caching a time-too-new rejection, so wrote this test to check it. It looks like despite only exempting BLOCK_MUTATED, it is still okay because header failures never cache block invalidity. This test will help ensure that if this ever changes, BLOCK_TIME_FUTURE gets excluded at the same time. This PR re-opens https://github.com/bitcoin/bitcoin/pull/17872 which went stale and addresses the nits raised by reviewers there. ACKs for top commit: MarcoFalke: review ACK 754e802274e9373ad7e1dccb710acf74ded6e7fb Tree-SHA512: a2bbc8fffb523cf2831e1ecb05f20868e30106a38cc2e369e4973fa549cca06675a668df16f76c49cc4ce3a22925404255e5c53c4232d63ba1b9fca878509aa0
This commit is contained in:
parent
bf72bea014
commit
1ee01c801e
@ -9,8 +9,11 @@ In this test we connect to one node over p2p, and test block requests:
|
|||||||
2) Invalid block with duplicated transaction should be re-requested.
|
2) Invalid block with duplicated transaction should be re-requested.
|
||||||
3) Invalid block with bad coinbase value should be rejected and not
|
3) Invalid block with bad coinbase value should be rejected and not
|
||||||
re-requested.
|
re-requested.
|
||||||
|
4) Invalid block due to future timestamp is later accepted when that timestamp
|
||||||
|
becomes valid.
|
||||||
"""
|
"""
|
||||||
import copy
|
import copy
|
||||||
|
import time
|
||||||
|
|
||||||
from test_framework.blocktools import create_block, create_coinbase, create_tx_with_script
|
from test_framework.blocktools import create_block, create_coinbase, create_tx_with_script
|
||||||
from test_framework.messages import COIN
|
from test_framework.messages import COIN
|
||||||
@ -18,6 +21,8 @@ from test_framework.p2p import P2PDataStore
|
|||||||
from test_framework.test_framework import BitcoinTestFramework
|
from test_framework.test_framework import BitcoinTestFramework
|
||||||
from test_framework.util import assert_equal
|
from test_framework.util import assert_equal
|
||||||
|
|
||||||
|
MAX_FUTURE_BLOCK_TIME = 2 * 60 * 60
|
||||||
|
|
||||||
|
|
||||||
class InvalidBlockRequestTest(BitcoinTestFramework):
|
class InvalidBlockRequestTest(BitcoinTestFramework):
|
||||||
def set_test_params(self):
|
def set_test_params(self):
|
||||||
@ -134,5 +139,18 @@ class InvalidBlockRequestTest(BitcoinTestFramework):
|
|||||||
self.log.info("Test inflation by duplicating input")
|
self.log.info("Test inflation by duplicating input")
|
||||||
peer.send_blocks_and_test([block4], node, success=False, reject_reason='bad-txns-inputs-duplicate')
|
peer.send_blocks_and_test([block4], node, success=False, reject_reason='bad-txns-inputs-duplicate')
|
||||||
|
|
||||||
|
self.log.info("Test accepting identical block after rejecting it due to a future timestamp.")
|
||||||
|
t = int(time.time())
|
||||||
|
node.setmocktime(t)
|
||||||
|
# Set block time +1 second past max future validity
|
||||||
|
block = create_block(tip, create_coinbase(height), t + MAX_FUTURE_BLOCK_TIME + 1)
|
||||||
|
block.hashMerkleRoot = block.calc_merkle_root()
|
||||||
|
block.solve()
|
||||||
|
# Need force_send because the block will get rejected without a getdata otherwise
|
||||||
|
peer.send_blocks_and_test([block], node, force_send=True, success=False, reject_reason='time-too-new')
|
||||||
|
node.setmocktime(t + 1)
|
||||||
|
peer.send_blocks_and_test([block], node, success=True)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
InvalidBlockRequestTest().main()
|
InvalidBlockRequestTest().main()
|
||||||
|
Loading…
Reference in New Issue
Block a user