daemon: omit extra set of <> in error message
The string conversion already adds them
This commit is contained in:
parent
0822933524
commit
2634307863
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue