mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
Merge e941507500 into merged_master (Bitcoin PR bitcoin/bitcoin#23963)
This commit is contained in:
commit
eae1665a2d
1 changed files with 5 additions and 6 deletions
|
|
@ -96,9 +96,6 @@ class PruneTest(BitcoinTestFramework):
|
|||
]
|
||||
self.rpc_timeout = 120
|
||||
|
||||
def skip_test_if_missing_module(self):
|
||||
self.skip_if_no_wallet()
|
||||
|
||||
def setup_network(self):
|
||||
self.setup_nodes()
|
||||
|
||||
|
|
@ -114,7 +111,8 @@ class PruneTest(BitcoinTestFramework):
|
|||
def setup_nodes(self):
|
||||
self.add_nodes(self.num_nodes, self.extra_args)
|
||||
self.start_nodes()
|
||||
self.import_deterministic_coinbase_privkeys()
|
||||
if self.is_wallet_compiled():
|
||||
self.import_deterministic_coinbase_privkeys()
|
||||
|
||||
def create_big_chain(self):
|
||||
# Start by creating some coinbases we can spend later
|
||||
|
|
@ -474,8 +472,9 @@ class PruneTest(BitcoinTestFramework):
|
|||
self.log.info("Test manual pruning with timestamps")
|
||||
self.manual_test(4, use_timestamp=True)
|
||||
|
||||
self.log.info("Test wallet re-scan")
|
||||
self.wallet_test()
|
||||
if self.is_wallet_compiled():
|
||||
self.log.info("Test wallet re-scan")
|
||||
self.wallet_test()
|
||||
|
||||
self.log.info("Test invalid pruning command line options")
|
||||
self.test_invalid_command_line_options()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue