diff options
author | fanquake <fanquake@gmail.com> | 2023-02-14 16:52:12 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-02-14 16:52:18 +0000 |
commit | af49d86dd740b7df7c110231c174b39da4883152 (patch) | |
tree | caf662158a594966f0653aada4a7938299e8eb82 /test | |
parent | d6ef44cccbdf3fede8f14ad136ba1cc574b41f9d (diff) | |
parent | fa9ec7b0fecd198d3b659d5197c6032416b1551f (diff) |
Merge bitcoin/bitcoin#27093: test: Fix intermittent sync issue in wallet_pruning
fa9ec7b0fecd198d3b659d5197c6032416b1551f test: Fix intermittent sync issue in wallet_pruning (MarcoFalke)
Pull request description:
The `sync_fun=self.no_op` has no motivation or rationale, and seems to be causing issues.
Fix that by removing it.
Actually fixes https://github.com/bitcoin/bitcoin/issues/27065, see https://github.com/bitcoin/bitcoin/pull/27066#issuecomment-1428249997
ACKs for top commit:
fanquake:
ACK fa9ec7b0fecd198d3b659d5197c6032416b1551f
Tree-SHA512: 3c67da6705d6698fcabb29de169a2b4723f74705c979380d1fddce5fe9595b4595445fd7d9790a6b2a89f10ce8ec3c64ce45248f58fd920b72b7b6fba8afb09f
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/wallet_pruning.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_pruning.py b/test/functional/wallet_pruning.py index 504014f839..1ceceaee93 100755 --- a/test/functional/wallet_pruning.py +++ b/test/functional/wallet_pruning.py @@ -123,7 +123,7 @@ class WalletPruningTest(BitcoinTestFramework): # A blk*.dat file is 128MB # Generate 250 light blocks - self.generate(self.nodes[0], 250, sync_fun=self.no_op) + self.generate(self.nodes[0], 250) # Generate 50MB worth of large blocks in the blk00000.dat file self.mine_large_blocks(self.nodes[0], 50) |