diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 7d47f90a8b..62ebee43aa 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -523,7 +523,7 @@ public: chainTxData = ChainTxData{ 1617874573, // * UNIX timestamp of last known number of transactions (Block 1450962) 34709765, // * total number of transactions between genesis and that timestamp - // (the tx=... number in the SetBestChain debug.log lines) + // (the tx=... number in the ChainStateFlushed debug.log lines) 0.3 // * estimated number of transactions per second after that timestamp }; } @@ -703,7 +703,7 @@ public: chainTxData = ChainTxData{ 1617874832, // * UNIX timestamp of last known number of transactions (Block 477483) 4926985, // * total number of transactions between genesis and that timestamp - // (the tx=... number in the SetBestChain debug.log lines) + // (the tx=... number in the ChainStateFlushed debug.log lines) 0.01 // * estimated number of transactions per second after that timestamp }; diff --git a/src/init.cpp b/src/init.cpp index e1217a1e90..82f98841fa 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -312,7 +312,7 @@ void PrepareShutdown() fFeeEstimatesInitialized = false; } - // FlushStateToDisk generates a SetBestChain callback, which we should avoid missing + // FlushStateToDisk generates a ChainStateFlushed callback, which we should avoid missing if (pcoinsTip != nullptr) { FlushStateToDisk(); }