We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fDisableGovernance
1 parent a42370d commit b4477e4Copy full SHA for b4477e4
src/init.cpp
@@ -1459,10 +1459,7 @@ bool AppInitParameterInteraction(const ArgsManager& args)
1459
}
1460
1461
1462
- const bool is_governance_enabled{!args.GetBoolArg("-disablegovernance", !DEFAULT_GOVERNANCE_ENABLE)};
1463
- LogPrintf("fDisableGovernance %d\n", !is_governance_enabled);
1464
-
1465
- if (!is_governance_enabled) {
+ if (args.GetBoolArg("-disablegovernance", !DEFAULT_GOVERNANCE_ENABLE)) {
1466
InitWarning(_("You are starting with governance validation disabled.") +
1467
(fPruneMode ?
1468
Untranslated(" ") + _("This is expected because you are running a pruned node.") :
0 commit comments