diff options
author | cryptochangements34 <bevanoffr@gmail.com> | 2018-04-08 00:23:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-08 00:23:59 -0400 |
commit | 372ffeba21c2f1a648c1a5bfec5e5f587163424c (patch) | |
tree | 40688bbb1d5f18746a3944fdfe352433acb9956f | |
parent | Merge pull request #3434 (diff) | |
download | monero-372ffeba21c2f1a648c1a5bfec5e5f587163424c.tar.xz |
Add a space in mining to testnet/stagenet string
-rw-r--r-- | src/daemon/command_parser_executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<std::string>& 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; |