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.
1 parent 657058b commit 66280e9Copy full SHA for 66280e9
src/init.cpp
@@ -1753,6 +1753,11 @@ bool AppInitMain()
1753
1754
// ********************************************************* Step 13: Load PAK List
1755
1756
+ // First, make sure -enforce_pak and -acceptnonstdtxn aren't conflicting
1757
+ if (Params().GetEnforcePak() && gArgs.GetBoolArg("-acceptnonstdtxn", !Params().RequireStandard())) {
1758
+ return InitError("-enforce_pak can not be true if the network accepts non-standard transactions for relay.");
1759
+ }
1760
+
1761
//Entire list of PAK entries from conf must be of valid format
1762
std::vector<std::string> pak_list_str = gArgs.GetArgs("-pak");
1763
bool valid_paklist = true;
0 commit comments