This commit is contained in:
Christopher Jeffrey 2014-10-21 16:03:54 -07:00
parent 3be1c53379
commit f3f0c0b852
1 changed files with 4 additions and 2 deletions

View File

@ -623,7 +623,8 @@ start_node_thread(void) {
try { try {
ReadConfigFile(mapArgs, mapMultiArgs); ReadConfigFile(mapArgs, mapMultiArgs);
} catch(std::exception &e) { } catch(std::exception &e) {
fprintf(stderr,"bitcoind.js: Error reading configuration file: %s\n", e.what()); fprintf(stderr,
"bitcoind.js: Error reading configuration file: %s\n", e.what());
return; return;
} }
@ -632,7 +633,8 @@ start_node_thread(void) {
// mapArgs["-testnet"] = g_testnet ? "1" : "0"; // mapArgs["-testnet"] = g_testnet ? "1" : "0";
if (!SelectParamsFromCommandLine()) { if (!SelectParamsFromCommandLine()) {
fprintf(stderr, "bitcoind.js: Invalid combination of -regtest and -testnet.\n"); fprintf(stderr,
"bitcoind.js: Invalid combination of -regtest and -testnet.\n");
return; return;
} }