daemon: indicate whether the spent key image is mined or unconfirmed

pull/95/head
stoffu 7 years ago
parent a6403846ef
commit c09aa94d34
No known key found for this signature in database
GPG Key ID: 41DAB8343A9EC012

@ -782,7 +782,7 @@ bool t_rpc_command_executor::is_key_image_spent(const crypto::key_image &ki) {
if (1 == res.spent_status.size())
{
// first as hex
tools::success_msg_writer() << ki << ": " << (res.spent_status.front() ? "spent" : "unspent");
tools::success_msg_writer() << ki << ": " << (res.spent_status.front() ? "spent" : "unspent") << (res.spent_status.front() == cryptonote::COMMAND_RPC_IS_KEY_IMAGE_SPENT::SPENT_IN_POOL ? " (in pool)" : "");
}
else
{

Loading…
Cancel
Save