mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
paymend id decryption note added
This commit is contained in:
parent
c74ed3e15a
commit
f02b8ecf9c
2 changed files with 5 additions and 2 deletions
|
@ -14,7 +14,8 @@
|
||||||
<H5 style="margin:5px">Payment id (encrypted): {{payment_id8}}</H5>
|
<H5 style="margin:5px">Payment id (encrypted): {{payment_id8}}</H5>
|
||||||
{{/decrypted_payment_id8}}
|
{{/decrypted_payment_id8}}
|
||||||
{{#decrypted_payment_id8}}
|
{{#decrypted_payment_id8}}
|
||||||
<H5 style="margin:5px">Payment id (decrypted): {{decrypted_payment_id8}}</H5>
|
<H5 style="margin:5px">Payment id (decrypted): {{decrypted_payment_id8}}
|
||||||
|
(value incorrect if you are not the recipient of the tx)</H5>
|
||||||
{{/decrypted_payment_id8}}
|
{{/decrypted_payment_id8}}
|
||||||
{{/has_payment_id8}}
|
{{/has_payment_id8}}
|
||||||
|
|
||||||
|
|
|
@ -366,7 +366,9 @@
|
||||||
var decrypted_payment_id8
|
var decrypted_payment_id8
|
||||||
= decrypt_payment_id(payment_id, pub_key, sec_key);
|
= decrypt_payment_id(payment_id, pub_key, sec_key);
|
||||||
console.log("decrypted_payment_id8: " + decrypted_payment_id8);
|
console.log("decrypted_payment_id8: " + decrypted_payment_id8);
|
||||||
decoding_results_str += "<h5>Decrypted payment id: " + decrypted_payment_id8 + "</h5>"
|
decoding_results_str += "<h5>Decrypted payment id: "
|
||||||
|
+ decrypted_payment_id8
|
||||||
|
+ " (value incorrect if you are not the recipient of the tx)</h5>"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue