- FF7009F672BF400A42D1D7AFB6E58AAF1C29D9C219FAD51C5F17000243A485E92BBB250D3F4BBEC3F0717D00FAD620C294D537832671F20C0979FB3F1383779B
+ 29FBB8792C3462CED61B4A0284360122F72C4FEF7FB5FB84E5399967AB6474CD83CCF3A60EB3C425E183B1B95FB9CA71FC23BB791316D762034559DF293F8BB0
bitcoin/src/init.cpp
(175 . 6)(175 . 8)
5 " -debug \t\t " + _("Output extra debugging information\n") +
6 " -caneat \t\t " + _("Permit the use of 'eatblock'\n") +
7 " -verifyall \t\t " + _("Forbid the skipping of ECDSA signature verification between checkpoints.\n") +
8 " -setverstring \t\t " + _("Set a custom version string.\n") +
9 " -setvernum \t\t " + _("Set a custom version number.\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") +
(199 . 6)(201 . 16)
14 fCanEat = GetBoolArg("-caneat");
15 fVerifyAll = GetBoolArg("-verifyall");
16
17 if (mapArgs.count("-setverstring"))
18 {
19 CLIENT_NAME = mapArgs["-setverstring"];
20 }
21
22 if (mapArgs.count("-setvernum"))
23 {
24 VERSION = atoi(mapArgs["-setvernum"]);
25 }
26
27 if (fDaemon)
28 fServer = true;
29 else