From 372ffeba21c2f1a648c1a5bfec5e5f587163424c Mon Sep 17 00:00:00 2001 From: cryptochangements34 Date: Sun, 8 Apr 2018 00:23:59 -0400 Subject: [PATCH] Add a space in mining to testnet/stagenet string --- src/daemon/command_parser_executor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/command_parser_executor.cpp b/src/daemon/command_parser_executor.cpp index 7a89ebc0c..13e774587 100644 --- a/src/daemon/command_parser_executor.cpp +++ b/src/daemon/command_parser_executor.cpp @@ -314,7 +314,7 @@ bool t_command_parser_executor::start_mining(const std::vector& arg return true; } if(nettype != cryptonote::MAINNET) - std::cout << "Mining to a " << (nettype == cryptonote::TESTNET ? "testnet" : "stagenet") << "address, make sure this is intentional!" << std::endl; + std::cout << "Mining to a " << (nettype == cryptonote::TESTNET ? "testnet" : "stagenet") << " address, make sure this is intentional!" << std::endl; uint64_t threads_count = 1; bool do_background_mining = false; bool ignore_battery = false;