mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
get_payment_id_as_string added
This commit is contained in:
parent
9647945261
commit
a549f25138
1 changed files with 28 additions and 19 deletions
47
src/page.h
47
src/page.h
|
@ -4939,6 +4939,32 @@ namespace xmreg
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
||||||
|
string
|
||||||
|
get_payment_id_as_string(
|
||||||
|
tx_details const& txd,
|
||||||
|
secret_key const& prv_view_key)
|
||||||
|
{
|
||||||
|
string payment_id;
|
||||||
|
|
||||||
|
// decrypt encrypted payment id, as used in integreated addresses
|
||||||
|
crypto::hash8 decrypted_payment_id8 = txd.payment_id8;
|
||||||
|
|
||||||
|
if (decrypted_payment_id8 != null_hash8)
|
||||||
|
{
|
||||||
|
if (decrypt_payment_id(decrypted_payment_id8, txd.pk, prv_view_key))
|
||||||
|
{
|
||||||
|
payment_id = pod_to_hex(decrypted_payment_id8);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if(txd.payment_id != null_hash)
|
||||||
|
{
|
||||||
|
payment_id = pod_to_hex(txd.payment_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
return payment_id;
|
||||||
|
}
|
||||||
|
|
||||||
template <typename Iterator>
|
template <typename Iterator>
|
||||||
bool
|
bool
|
||||||
find_our_outputs(
|
find_our_outputs(
|
||||||
|
@ -5031,23 +5057,7 @@ namespace xmreg
|
||||||
|
|
||||||
if (mine_output)
|
if (mine_output)
|
||||||
{
|
{
|
||||||
|
string payment_id_str = get_payment_id_as_string(txd, prv_view_key);
|
||||||
string payment_id;
|
|
||||||
|
|
||||||
// decrypt encrypted payment id, as used in integreated addresses
|
|
||||||
crypto::hash8 decrypted_payment_id8 = txd.payment_id8;
|
|
||||||
|
|
||||||
if (decrypted_payment_id8 != null_hash8)
|
|
||||||
{
|
|
||||||
if (decrypt_payment_id(decrypted_payment_id8, txd.pk, prv_view_key))
|
|
||||||
{
|
|
||||||
payment_id = pod_to_hex(decrypted_payment_id8);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if(txd.payment_id != null_hash)
|
|
||||||
{
|
|
||||||
payment_id = pod_to_hex(txd.payment_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
j_outptus.push_back(json {
|
j_outptus.push_back(json {
|
||||||
{"output_pubkey" , pod_to_hex(outp.first.key)},
|
{"output_pubkey" , pod_to_hex(outp.first.key)},
|
||||||
|
@ -5056,7 +5066,7 @@ namespace xmreg
|
||||||
{"in_mempool" , is_mempool},
|
{"in_mempool" , is_mempool},
|
||||||
{"output_idx" , output_idx},
|
{"output_idx" , output_idx},
|
||||||
{"tx_hash" , pod_to_hex(txd.hash)},
|
{"tx_hash" , pod_to_hex(txd.hash)},
|
||||||
{"payment_id" , payment_id}
|
{"payment_id" , payment_id_str}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5066,7 +5076,6 @@ namespace xmreg
|
||||||
|
|
||||||
} // for (auto it = blk_txs.begin(); it != blk_txs.end(); ++it)
|
} // for (auto it = blk_txs.begin(); it != blk_txs.end(); ++it)
|
||||||
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue