daemon: omit extra set of <> in error message

The string conversion already adds them
This commit is contained in:
moneromooo-monero 2015-08-09 16:28:13 +01:00
parent 0822933524
commit 2634307863
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -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;