From 34b37ce45c087fb70997c828209d34836864403b Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Mon, 6 Nov 2023 17:33:58 +0100 Subject: [PATCH] added missing info for tx rpc details --- src/currency_core/currency_format_utils.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/currency_core/currency_format_utils.cpp b/src/currency_core/currency_format_utils.cpp index 94a3af5d..0ff7c36f 100644 --- a/src/currency_core/currency_format_utils.cpp +++ b/src/currency_core/currency_format_utils.cpp @@ -3838,7 +3838,11 @@ namespace currency VARIANT_SWITCH_END(); } VARIANT_CASE_CONST(tx_out_zarcanum, o) - //@#@ + tei.outs.back().pub_keys.push_back(epee::string_tools::pod_to_hex(o.stealth_address)); + tei.outs.back().pub_keys.push_back(epee::string_tools::pod_to_hex(o.concealing_point)); + tei.outs.back().pub_keys.push_back(epee::string_tools::pod_to_hex(o.amount_commitment)); + tei.outs.back().pub_keys.push_back(epee::string_tools::pod_to_hex(o.blinded_asset_id)); + tei.outs.back().pub_keys.push_back(epee::string_tools::pod_to_hex(o.encrypted_amount)); VARIANT_SWITCH_END(); ++i; }