aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-05-31 14:39:28 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-05-31 14:39:28 -0500
commit40dd59fb8ef59e83629c3bc0cf32625fea2fbb29 (patch)
tree5ae6c27a27c3a445de2d0c68e88d6e68fe49c7f2 /src
parentMerge pull request #3561 (diff)
parentAdd a space in mining to testnet/stagenet string (diff)
downloadmonero-40dd59fb8ef59e83629c3bc0cf32625fea2fbb29.tar.xz
Merge pull request #3583
372ffeb Add a space in mining to testnet/stagenet string (cryptochangements34)
Diffstat (limited to 'src')
-rw-r--r--src/daemon/command_parser_executor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/command_parser_executor.cpp b/src/daemon/command_parser_executor.cpp
index 8b51b9b85..34d9fb4c8 100644
--- a/src/daemon/command_parser_executor.cpp
+++ b/src/daemon/command_parser_executor.cpp
@@ -315,7 +315,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;