diff --git a/src/validation.cpp b/src/validation.cpp index d1681a265b..0c185c0013 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -1842,7 +1842,6 @@ static int64_t nTimeDashSpecific = 0; static int64_t nTimeConnect = 0; static int64_t nTimeIndexConnect = 0; static int64_t nTimeIndexWrite = 0; -static int64_t nTimeCallbacks = 0; static int64_t nTimeTotal = 0; static int64_t nBlocksTotal = 0; @@ -2296,9 +2295,6 @@ bool CChainState::ConnectBlock(const CBlock& block, BlockValidationState& state, uiInterface.NotifyMasternodeListChanged(mnlu.new_list, pindex); } - int64_t nTime8 = GetTimeMicros(); nTimeCallbacks += nTime8 - nTime5; - LogPrint(BCLog::BENCHMARK, " - Callbacks: %.2fms [%.2fs (%.2fms/blk)]\n", MILLI * (nTime8 - nTime5), nTimeCallbacks * MICRO, nTimeCallbacks * MILLI / nBlocksTotal); - ::g_stats_client->timing("ConnectBlock_ms", (nTime8 - nTimeStart) / 1000, 1.0f); ::g_stats_client->gauge("blocks.tip.SizeBytes", ::GetSerializeSize(block, PROTOCOL_VERSION), 1.0f); ::g_stats_client->gauge("blocks.tip.Height", m_chain.Height(), 1.0f);