There was an error while loading. Please reload this page.
1 parent 6a0f381 commit 77882b8Copy full SHA for 77882b8
1 file changed
src/init.cpp
@@ -1104,6 +1104,13 @@ bool AppInitParameterInteraction(const ArgsManager& args)
1104
return InitError(Untranslated("peertimeout must be a positive integer."));
1105
}
1106
1107
+ if (chainparams.GetConsensus().has_parent_chain && !chainparams.GetConsensus().ParentChainHasPow()) {
1108
+ LogPrintf("This chain is configured with a signed-blocks parent chain. "
1109
+ "Peg-ins referencing a parent block that has activated dynamic "
1110
+ "federations will be rejected: such headers cannot be "
1111
+ "authenticated. See doc/ for details.\n");
1112
+ }
1113
+
1114
// Sanity check argument for min fee for including tx in block
1115
// TODO: Harmonize which arguments need sanity checking and where that happens
1116
if (args.IsArgSet("-blockmintxfee")) {
0 commit comments