aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/init.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Add -walletdir parameter to specify custom wallet dirMeshCollider2017-11-181-4/+6
|
* scripted-diff: Replace #include "" with #include <> (ryanofsky)MeshCollider2017-11-161-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -BEGIN VERIFY SCRIPT- for f in \ src/*.cpp \ src/*.h \ src/bench/*.cpp \ src/bench/*.h \ src/compat/*.cpp \ src/compat/*.h \ src/consensus/*.cpp \ src/consensus/*.h \ src/crypto/*.cpp \ src/crypto/*.h \ src/crypto/ctaes/*.h \ src/policy/*.cpp \ src/policy/*.h \ src/primitives/*.cpp \ src/primitives/*.h \ src/qt/*.cpp \ src/qt/*.h \ src/qt/test/*.cpp \ src/qt/test/*.h \ src/rpc/*.cpp \ src/rpc/*.h \ src/script/*.cpp \ src/script/*.h \ src/support/*.cpp \ src/support/*.h \ src/support/allocators/*.h \ src/test/*.cpp \ src/test/*.h \ src/wallet/*.cpp \ src/wallet/*.h \ src/wallet/test/*.cpp \ src/wallet/test/*.h \ src/zmq/*.cpp \ src/zmq/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT-
* Fix -disablewallet default valueJoão Barbosa2017-11-071-2/+5
|
* Improve -disablewallet parameter interactionJoão Barbosa2017-11-071-3/+8
|
* Merge #11250: Bump wallet version to 159900 and remove the `usehd` optionWladimir J. van der Laan2017-09-081-1/+0
|\ | | | | | | | | | | | | | | | | | | | | 713a92073 Remove usehd option and warn when it is used (Andrew Chow) d4c18f733 Bump wallet version number to 159900 (Andrew Chow) Pull request description: Bump the wallet version number to 159900 so that new wallets made without a default key will no longer work on previous versions at all. Also remove the `usehd` option to avoid weird interaction with wallet version numbers and HD-ness of wallets. Tree-SHA512: dd7965505bfad6a926c79afd423236f509229a398a8398076f8d57d90a5974243f9459a61225c4daee560c796f427445c9e55a3ad528a3a97a9123ca6a1269ab
| * Remove usehd option and warn when it is usedAndrew Chow2017-09-071-1/+0
| | | | | | | | | | Removed the -usehd option so wallets cannot be made to be non-hd anymore. A warning will be displayed when the option is set.
* | [wallet] Add StartWallets() function to wallet/init.cppJohn Newbery2017-09-071-0/+6
| |
* | [wallet] Add RegisterWalletRPC() function to wallet/init.cppJohn Newbery2017-09-071-0/+8
| |
* | [wallet] Add CloseWallets() function to wallet/init.cppJohn Newbery2017-09-071-0/+7
| |
* | [wallet] Add StopWallets() function to wallet/init.cppJohn Newbery2017-09-071-2/+8
| |
* | [wallet] Add FlushWallets() function to wallet/init.cppJohn Newbery2017-09-071-0/+6
| |
* | [wallet] Rename WalletVerify() to VerifyWallets()John Newbery2017-09-071-1/+1
| | | | | | | | This function can now verify multiple wallets.
* | [wallet] Rename InitLoadWallet() to OpenWallets()John Newbery2017-09-071-1/+1
|/ | | | | | | | Rationale: - this init function can now open multiple wallets (hence Wallet->Wallets) - This is named as the antonym to CloseWallets(), which carries out the opposite action.
* MOVEONLY: Init functions wallet/wallet.cpp -> wallet/init.cppRussell Yanofsky2017-08-141-0/+235
|
* Move some static functions out of wallet.h/cppRussell Yanofsky2017-08-141-0/+12
This commit just moves a few function declarations and updates callers. Function bodies are moved in two followup MOVEONLY commits. This change is desirable because wallet.h/cpp are monolithic and hard to navigate, so pulling things out and grouping together pieces of related functionality should improve the organization. Another proximate motivation is the wallet process separation work in https://github.com/bitcoin/bitcoin/pull/10973, where (at least initially) parameter parsing and fee estimation are still done in the main process rather than the wallet process, and having functions that run in different processes scrambled up throughout wallet.cpp is unnecessarily confusing.