mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
Move CWallet::setKeyPool to private section of CWallet
This commit is contained in:
parent
ea268747b6
commit
e86eb71604
3 changed files with 21 additions and 11 deletions
|
|
@ -1439,9 +1439,12 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
|
|||
LogPrintf("mapBlockIndex.size() = %u\n", mapBlockIndex.size());
|
||||
LogPrintf("nBestHeight = %d\n", chainActive.Height());
|
||||
#ifdef ENABLE_WALLET
|
||||
LogPrintf("setKeyPool.size() = %u\n", pwalletMain ? pwalletMain->setKeyPool.size() : 0);
|
||||
LogPrintf("mapWallet.size() = %u\n", pwalletMain ? pwalletMain->mapWallet.size() : 0);
|
||||
LogPrintf("mapAddressBook.size() = %u\n", pwalletMain ? pwalletMain->mapAddressBook.size() : 0);
|
||||
if (pwalletMain) {
|
||||
LOCK(pwalletMain->cs_wallet);
|
||||
LogPrintf("setKeyPool.size() = %u\n", pwalletMain->GetKeyPoolSize());
|
||||
LogPrintf("mapWallet.size() = %u\n", pwalletMain->mapWallet.size());
|
||||
LogPrintf("mapAddressBook.size() = %u\n", pwalletMain->mapAddressBook.size());
|
||||
}
|
||||
#endif
|
||||
|
||||
if (GetBoolArg("-listenonion", DEFAULT_LISTEN_ONION))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue