diff --git a/src/bitcoindjs.cc b/src/bitcoindjs.cc index bb7d943f..bda4c51e 100644 --- a/src/bitcoindjs.cc +++ b/src/bitcoindjs.cc @@ -623,7 +623,8 @@ start_node_thread(void) { try { ReadConfigFile(mapArgs, mapMultiArgs); } 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; } @@ -632,7 +633,8 @@ start_node_thread(void) { // mapArgs["-testnet"] = g_testnet ? "1" : "0"; 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; }