From edb0f4be9014398fb51e7ee04afad2cf6bda2aae Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Mon, 21 Sep 2020 07:27:53 -0400 Subject: [PATCH] less logspam --- src/komodo_bitcoind.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/komodo_bitcoind.h b/src/komodo_bitcoind.h index f21f0cc71..9e2182104 100644 --- a/src/komodo_bitcoind.h +++ b/src/komodo_bitcoind.h @@ -710,7 +710,7 @@ bool hush_hardfork_active(uint32_t time) uint32_t nHardForkHeight = GetArg("-hardfork-height", nHushHardforkHeight); bool isactive = chainActive.Height() > nHardForkHeight; if(fDebug) { - fprintf(stderr, "%s: active=%d at height=%d and forkheight=%d\n", __FUNCTION__, (int)isactive, chainActive.Height(), nHardForkHeight); + //fprintf(stderr, "%s: active=%d at height=%d and forkheight=%d\n", __FUNCTION__, (int)isactive, chainActive.Height(), nHardForkHeight); } return isactive; }