1
0
Fork 0
forked from lthn/blockchain

simplewallet: payment ids in list_recent_transfers command now printed as hex

This commit is contained in:
sowle 2019-12-16 14:50:32 +03:00
parent aa2e4f716d
commit 42ff9ca9bf
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -691,7 +691,7 @@ bool print_wti(const tools::wallet_public::wallet_transfer_info& wti)
std::string payment_id_placeholder;
if (wti.payment_id.size())
payment_id_placeholder = std::string("(payment_id:") + wti.payment_id + ")";
payment_id_placeholder = std::string("(payment_id:") + epee::string_tools::buff_to_hex_nodelimer(wti.payment_id) + ")";
static const std::string separator = ", ";
std::string remote_side;