mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
fix: show correct amount in key image file checker
This commit is contained in:
parent
e7c542146e
commit
be0d868198
1 changed files with 2 additions and 2 deletions
|
@ -2167,9 +2167,9 @@ public:
|
||||||
|
|
||||||
if (it != tx_key_imgs.end())
|
if (it != tx_key_imgs.end())
|
||||||
{
|
{
|
||||||
uint64_t xmr_amount = XMR_AMOUNT((*it).amount);
|
uint64_t xmr_amount = (*it).amount;
|
||||||
key_img_info["amount"] = xmreg::xmr_amount_to_str(xmr_amount);
|
key_img_info["amount"] = xmreg::xmr_amount_to_str(xmr_amount);
|
||||||
total_xmr += (*it).amount;
|
total_xmr += xmr_amount;
|
||||||
}
|
}
|
||||||
|
|
||||||
key_img_info["timestamp"] = xmreg::timestamp_to_str(blk_timestamp);
|
key_img_info["timestamp"] = xmreg::timestamp_to_str(blk_timestamp);
|
||||||
|
|
Loading…
Reference in a new issue