diff options
| author | Andrew Chow <[email protected]> | 2020-06-22 17:58:18 -0400 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2020-09-08 21:02:53 -0400 |
| commit | 1bee1e6269b76b52b1eab9112d39c245beaa27a2 (patch) | |
| tree | 1b437fa47cf89317a767c7e5ae25087283d5d28a /test/functional/feature_fee_estimation.py | |
| parent | Merge #19738: wallet: Avoid multiple BerkeleyBatch in DelAddressBook (diff) | |
| download | discoin-1bee1e6269b76b52b1eab9112d39c245beaa27a2.tar.xz discoin-1bee1e6269b76b52b1eab9112d39c245beaa27a2.zip | |
Do not create default wallet
No longer create a default wallet. The default wallet will still be
loaded if it exists and not other wallets were specified (anywhere,
including settings.json, bitcoin.conf, and command line).
Tests are updated to be started with -wallet= if they need the default
wallet.
Added test to wallet_startup.py testing that no default wallet is
created and that it is loaded if it exists and no other wallets were
specified.
Diffstat (limited to 'test/functional/feature_fee_estimation.py')
| -rwxr-xr-x | test/functional/feature_fee_estimation.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/feature_fee_estimation.py b/test/functional/feature_fee_estimation.py index 702a1d999..d89eeec40 100755 --- a/test/functional/feature_fee_estimation.py +++ b/test/functional/feature_fee_estimation.py @@ -145,9 +145,9 @@ class EstimateFeeTest(BitcoinTestFramework): # mine non-standard txs (e.g. txs with "dust" outputs) # Force fSendTrickle to true (via whitelist.noban) self.extra_args = [ - ["-acceptnonstdtxn", "[email protected]"], - ["-acceptnonstdtxn", "[email protected]", "-blockmaxweight=68000"], - ["-acceptnonstdtxn", "[email protected]", "-blockmaxweight=32000"], + ["-acceptnonstdtxn", "[email protected]", "-wallet="], + ["-acceptnonstdtxn", "[email protected]", "-blockmaxweight=68000", "-wallet="], + ["-acceptnonstdtxn", "[email protected]", "-blockmaxweight=32000", "-wallet="], ] def skip_test_if_missing_module(self): |