diff --git a/src/templates/my_outputs.html b/src/templates/my_outputs.html index b245cfe..6cb808a 100644 --- a/src/templates/my_outputs.html +++ b/src/templates/my_outputs.html @@ -14,7 +14,8 @@
Payment id (encrypted): {{payment_id8}}
{{/decrypted_payment_id8}} {{#decrypted_payment_id8}} -
Payment id (decrypted): {{decrypted_payment_id8}}
+
Payment id (decrypted): {{decrypted_payment_id8}} + (value incorrect if you are not the recipient of the tx)
{{/decrypted_payment_id8}} {{/has_payment_id8}} diff --git a/src/templates/partials/tx_details.html b/src/templates/partials/tx_details.html index 9651318..1032360 100644 --- a/src/templates/partials/tx_details.html +++ b/src/templates/partials/tx_details.html @@ -366,7 +366,9 @@ var decrypted_payment_id8 = decrypt_payment_id(payment_id, pub_key, sec_key); console.log("decrypted_payment_id8: " + decrypted_payment_id8); - decoding_results_str += "
Decrypted payment id: " + decrypted_payment_id8 + "
" + decoding_results_str += "
Decrypted payment id: " + + decrypted_payment_id8 + + " (value incorrect if you are not the recipient of the tx)
" } }