less logspam

This commit is contained in:
Duke Leto
2020-09-21 07:27:53 -04:00
parent b5d308f182
commit edb0f4be90

View File

@@ -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;
}