mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-02 19:52:01 +02:00
Use COINBASE_MATURITY constant in functional tests.
This commit is contained in:
@ -5,6 +5,7 @@
|
||||
"""Test the listsinceblock RPC."""
|
||||
|
||||
from test_framework.address import key_to_p2wpkh
|
||||
from test_framework.blocktools import COINBASE_MATURITY
|
||||
from test_framework.key import ECKey
|
||||
from test_framework.test_framework import BitcoinTestFramework
|
||||
from test_framework.messages import BIP125_SEQUENCE_NUMBER
|
||||
@ -29,7 +30,7 @@ class ListSinceBlockTest(BitcoinTestFramework):
|
||||
# All nodes are in IBD from genesis, so they'll need the miner (node2) to be an outbound connection, or have
|
||||
# only one connection. (See fPreferredDownload in net_processing)
|
||||
self.connect_nodes(1, 2)
|
||||
self.nodes[2].generate(101)
|
||||
self.nodes[2].generate(COINBASE_MATURITY + 1)
|
||||
self.sync_all()
|
||||
|
||||
self.test_no_blockhash()
|
||||
|
Reference in New Issue
Block a user