diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-10-21 11:38:52 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-10-21 11:56:10 +0200 |
commit | b88cb1a96eb670ca1f36cdc3fa908a23bffa18c5 (patch) | |
tree | e92c767a8ac2aca7fc1844903154c6b22e7635cc /src/init.cpp | |
parent | d0b19b5805a8791fb61597cbe6867d148ce063ce (diff) | |
parent | a96d113962b92b550a04d6ab0f580d29401039da (diff) |
Merge pull request #5105
a96d113 Rename CWalletInterface to CValidationInterface (Pieter Wuille)
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index 55991ac9b3..273c21f12f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -170,7 +170,7 @@ void Shutdown() #ifndef WIN32 boost::filesystem::remove(GetPidFile()); #endif - UnregisterAllWallets(); + UnregisterAllValidationInterfaces(); #ifdef ENABLE_WALLET delete pwalletMain; pwalletMain = NULL; @@ -1154,7 +1154,7 @@ bool AppInit2(boost::thread_group& threadGroup) LogPrintf("%s", strErrors.str()); LogPrintf(" wallet %15dms\n", GetTimeMillis() - nStart); - RegisterWallet(pwalletMain); + RegisterValidationInterface(pwalletMain); CBlockIndex *pindexRescan = chainActive.Tip(); if (GetBoolArg("-rescan", false)) |