mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-04 12:42:05 +02:00
Avoid implicit-integer-sign-change in VerifyLoadedChainstate
This commit is contained in:
@ -69,7 +69,14 @@ class BlockchainTest(BitcoinTestFramework):
|
||||
self.wallet = MiniWallet(self.nodes[0])
|
||||
self.mine_chain()
|
||||
self._test_max_future_block_time()
|
||||
self.restart_node(0, extra_args=['-stopatheight=207', '-prune=1']) # Set extra args with pruning after rescan is complete
|
||||
self.restart_node(
|
||||
0,
|
||||
extra_args=[
|
||||
"-stopatheight=207",
|
||||
"-checkblocks=-1", # Check all blocks
|
||||
"-prune=1", # Set pruning after rescan is complete
|
||||
],
|
||||
)
|
||||
|
||||
self._test_getblockchaininfo()
|
||||
self._test_getchaintxstats()
|
||||
|
Reference in New Issue
Block a user