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 dfe5331 commit 3fc3ac3Copy full SHA for 3fc3ac3
src/init.cpp
@@ -1764,6 +1764,11 @@ bool AppInitMain()
1764
1765
// ********************************************************* Step 13: Load PAK List
1766
1767
+ // First, make sure -enforce_pak and -acceptnonstdtxn aren't conflicting
1768
+ if (Params().GetEnforcePak() && gArgs.GetBoolArg("-acceptnonstdtxn", !Params().RequireStandard())) {
1769
+ return InitError("-enforce_pak can not be true if the network accepts non-standard transactions for relay.");
1770
+ }
1771
+
1772
//Entire list of PAK entries from conf must be of valid format
1773
std::vector<std::string> pak_list_str = gArgs.GetArgs("-pak");
1774
bool valid_paklist = true;
0 commit comments