forked from lthn/blockchain
simplewallet: payment ids in list_recent_transfers command now printed as hex
This commit is contained in:
parent
aa2e4f716d
commit
42ff9ca9bf
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue