diff options
author | Marko Bencun <marko.bencun@monetas.net> | 2017-02-23 16:38:41 +0900 |
---|---|---|
committer | Marko Bencun <marko.bencun@monetas.net> | 2017-02-24 09:19:29 +0900 |
commit | ef9f495e931fad1e356757d6a40092596aa0205c (patch) | |
tree | 620db571adbb0231123807bf49170504fed38e3f /src/qt/bitcoin.cpp | |
parent | 692c9eddba67d5a7ceb85fa4b2632f664c68f418 (diff) |
Trivial: fix comments referencing AppInit2
It was refactored into multiple functions in
0cc8b6bc44bea29e24fa4e13d8a9bbe4f1483680.
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 72f5f4aac9..c31dea2067 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -268,7 +268,7 @@ void BitcoinCore::initialize() { try { - qDebug() << __func__ << ": Running AppInit2 in thread"; + qDebug() << __func__ << ": Running initialization in thread"; if (!AppInitBasicSetup()) { Q_EMIT initializeResult(false); @@ -457,7 +457,7 @@ void BitcoinApplication::initializeResult(int retval) returnValue = retval ? 0 : 1; if(retval) { - // Log this only after AppInit2 finishes, as then logging setup is guaranteed complete + // Log this only after AppInitMain finishes, as then logging setup is guaranteed complete qWarning() << "Platform customization:" << platformStyle->getName(); #ifdef ENABLE_WALLET PaymentServer::LoadRootCAs(); |