diff options
author | John Newbery <john@johnnewbery.com> | 2017-08-29 11:51:02 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-09-07 16:21:09 -0700 |
commit | 1b9cee66e1c50cb6f110793ec5dc4c6a291cce36 (patch) | |
tree | 77654dbc19f0924841b6181008f6b72f3a0244ca /src/init.cpp | |
parent | 9c76ba18cdfe01fe9266e0dcf6714dbe0abbb837 (diff) |
[wallet] Rename WalletVerify() to VerifyWallets()
This function can now verify multiple wallets.
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 387bd2e2f7..ce368a6bb1 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1246,7 +1246,7 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler) // ********************************************************* Step 5: verify wallet database integrity #ifdef ENABLE_WALLET - if (!WalletVerify()) + if (!VerifyWallets()) return false; #endif // ********************************************************* Step 6: network initialization |