trivial: don't print fDisableGovernance value anymore

Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
This commit is contained in:
Kittywhiskers Van Gogh 2024-04-25 10:06:29 +00:00
parent a42370df93
commit b4477e409c
No known key found for this signature in database
GPG Key ID: 30CD0C065E5C4AAD

View File

@ -1459,10 +1459,7 @@ bool AppInitParameterInteraction(const ArgsManager& args)
}
}
const bool is_governance_enabled{!args.GetBoolArg("-disablegovernance", !DEFAULT_GOVERNANCE_ENABLE)};
LogPrintf("fDisableGovernance %d\n", !is_governance_enabled);
if (!is_governance_enabled) {
if (args.GetBoolArg("-disablegovernance", !DEFAULT_GOVERNANCE_ENABLE)) {
InitWarning(_("You are starting with governance validation disabled.") +
(fPruneMode ?
Untranslated(" ") + _("This is expected because you are running a pruned node.") :