Fabian Jahr
590bda79e8
scripted-diff: Remove setup_clean_chain if default is not changed
...
-BEGIN VERIFY SCRIPT-
git grep -l "self.setup_clean_chain = False" test/functional/*.py | xargs sed -i "/self.setup_clean_chain = False/d";
-END VERIFY SCRIPT-
2021-02-01 23:13:38 +01:00
Andrew Chow
25bc5dccbf
Use importdescriptors when in descriptor wallet mode in wallet_createwallet.py
...
sethdseed and importmulti are not available for descriptor wallets, so
when doing descriptor wallet tests, use importdescriptors instead.
Also changes some output to match what descriptor wallets will return.
2020-11-01 17:54:19 -05:00
MarcoFalke
fa488f131f
scripted-diff: Bump copyright headers
...
-BEGIN VERIFY SCRIPT-
./contrib/devtools/copyright_header.py update ./
-END VERIFY SCRIPT-
2020-04-16 13:33:09 -04:00
MarcoFalke
fa72d270ad
test: Bump walletpassphrase timeouts in wallet_createwallet to avoid valgrind timeouts
2020-03-11 13:23:59 -04:00
MarcoFalke
4444edc2e6
ci: Enable all functional tests in valgrind
2020-03-10 18:38:42 -04:00
practicalswift
5ac804a9eb
tests: Use a default of supports_cli=True (instead of supports_cli=False)
2019-12-06 15:24:06 +00:00
Andrew Chow
c5d3787367
Allow createwallet to take empty passwords to make unencrypted wallets
...
Allow createwallet to take the empty string as a password and interpret that
as leaving the wallet unencrypted. Also warn when that happens.
2019-07-29 11:50:24 -04:00
Fabian Jahr
ba1f128d6c
Return error for ignored passphrase through disable private keys option
2019-07-19 14:34:33 -04:00
whythat
7860c98bd5
wallet: do not encrypt wallets with disabled private keys
2019-06-04 16:39:34 +03:00
Andrew Chow
662d1171d9
Add option to create an encrypted wallet
2019-05-13 22:49:34 -04:00
MarcoFalke
faa7cdf764
scripted-diff: Update copyright in ./test
...
-BEGIN VERIFY SCRIPT-
./contrib/devtools/copyright_header.py update ./test/
-END VERIFY SCRIPT-
2019-03-02 10:58:35 -05:00
MarcoFalke
fa0e65b772
scripted-diff: test: Remove brackets after assert
...
-BEGIN VERIFY SCRIPT-
sed -i --regexp-extended -e 's/assert ?\((.+)\)(( )*)?(#.*)?$/assert \1\3\3\4/g' $(git grep -l --extended-regexp 'assert ?\(' test)
-END VERIFY SCRIPT-
2019-03-02 10:51:35 -05:00
Andrew Chow
9b81fd19ac
Fetch keys from keypool when private keys are disabled
...
When private keys are disabled, still fetch keys from the keypool
if the keypool has keys. Those keys come from importing them and
adding them to the keypool.
2019-02-14 18:14:00 -05:00
Andrew Chow
7687f7873b
[wallet] Support creating a blank wallet
...
A blank wallet is a wallet that has no keys, script or watch only things.
A new wallet flag indicating that it is blank will be set when the wallet
is blank. Once it is no longer blank (a seed has been generated, keys or
scripts imported, etc), the flag will be unset.
2019-02-10 12:24:53 -05:00