diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-08-09 16:28:13 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-08-09 16:28:13 +0100 |
commit | 263430786312343cd4b8e2389ebade9f4dd3206a (patch) | |
tree | 2ce0bc32ac8e8a66b27085588613cedecae749c6 /src | |
parent | daemon: print a decoded tx in print_tx (diff) | |
download | monero-263430786312343cd4b8e2389ebade9f4dd3206a.tar.xz |
daemon: omit extra set of <> in error message
The string conversion already adds them
Diffstat (limited to 'src')
-rw-r--r-- | src/daemon/rpc_command_executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index b9ef3513c..2f3a6b4d5 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -514,7 +514,7 @@ bool t_rpc_command_executor::print_transaction(crypto::hash transaction_hash) { } else { - tools::fail_msg_writer() << "transaction wasn't found: <" << transaction_hash << '>' << std::endl; + tools::fail_msg_writer() << "transaction wasn't found: " << transaction_hash << std::endl; } return true; |