- 29FBB8792C3462CED61B4A0284360122F72C4FEF7FB5FB84E5399967AB6474CD83CCF3A60EB3C425E183B1B95FB9CA71FC23BB791316D762034559DF293F8BB0
+ 971B82BE435C99A1AF9D5CACC9C05AF7616F4AF7EE1466EFACD46D41EDDC1C4D7DA2FDB4A302AAB7C99933D33AD2D613F3BFBE76FEC67A71C6D4D1FE14AC142D
bitcoin/src/init.cpp
(177 . 6)(177 . 8)
5 " -verifyall \t\t " + _("Forbid the skipping of ECDSA signature verification between checkpoints.\n") +
6 " -setverstring \t\t " + _("Set a custom version string.\n") +
7 " -setvernum \t\t " + _("Set a custom version number.\n") +
8 " -highs \t\t " + _("Set all transactions to have DER 'S' Value set to 'high'.\n") +
9 " -lows \t\t " + _("Set all transactions to have DER 'S' Value set to 'low'.\n") +
10 " -logtimestamps \t " + _("Prepend debug output with timestamp\n") +
11 " -printtoconsole \t " + _("Send trace/debug info to console instead of debug.log file\n") +
12 " -rpcuser=<user> \t " + _("Username for JSON-RPC connections\n") +
(200 . 6)(202 . 14)
14 fDaemon = GetBoolArg("-daemon");
15 fCanEat = GetBoolArg("-caneat");
16 fVerifyAll = GetBoolArg("-verifyall");
17 fHighS = GetBoolArg("-highs");
18 fLowS = GetBoolArg("-lows");
19
20 if (fHighS && fLowS)
21 {
22 printf("Error: '-highs' and '-lows' can not be set at the same time.\n");
23 return false;
24 }
25
26 if (mapArgs.count("-setverstring"))
27 {