diff options
| author | John Newbery <[email protected]> | 2017-08-29 11:48:25 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2017-09-07 16:19:17 -0700 |
| commit | 9c76ba18cdfe01fe9266e0dcf6714dbe0abbb837 (patch) | |
| tree | abaa247a4fa23eb98ffde4f6bba991e6b56a5a94 /src/init.cpp | |
| parent | Merge #10303: [bench] Include ms/blk stats in Connect* benchmarks. (diff) | |
| download | discoin-9c76ba18cdfe01fe9266e0dcf6714dbe0abbb837.tar.xz discoin-9c76ba18cdfe01fe9266e0dcf6714dbe0abbb837.zip | |
[wallet] Rename InitLoadWallet() to OpenWallets()
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.
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 7c99dc74e..387bd2e2f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1567,7 +1567,7 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler) // ********************************************************* Step 8: load wallet #ifdef ENABLE_WALLET - if (!InitLoadWallet()) + if (!OpenWallets()) return false; #else LogPrintf("No wallet support compiled in!\n"); |