diff options
author | furszy <matiasfurszyfer@protonmail.com> | 2022-07-11 15:13:32 -0300 |
---|---|---|
committer | furszy <matiasfurszyfer@protonmail.com> | 2022-07-11 15:13:32 -0300 |
commit | 76a84c0a6cac3df711b1ed907a46c905cb85c485 (patch) | |
tree | 1830a355335fc3a59970a821a7987142d85a00c0 | |
parent | c92eb6cda0f402b83263c9a9ee129d5d0763fd3f (diff) |
test: speedup wallet_coinbase_category.py
No need to create a chain for it (nor use the cache).
-rwxr-xr-x | test/functional/wallet_coinbase_category.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/wallet_coinbase_category.py b/test/functional/wallet_coinbase_category.py index 5a6b6cee59..c2a8e612cf 100755 --- a/test/functional/wallet_coinbase_category.py +++ b/test/functional/wallet_coinbase_category.py @@ -15,6 +15,7 @@ from test_framework.util import ( class CoinbaseCategoryTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 1 + self.setup_clean_chain = True def skip_test_if_missing_module(self): self.skip_if_no_wallet() |