From fec63a855f89e1b2873c6776c4f4fecd22da700e Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Fri, 30 Nov 2018 15:35:11 +0800 Subject: [PATCH] outputs fields added --- src/page.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/page.h b/src/page.h index 1af1a3f..b5c8205 100644 --- a/src/page.h +++ b/src/page.h @@ -1899,6 +1899,12 @@ show_ringmemberstx_jsonhex(string const& tx_hash_str) {"spendkey", ""}, {"amount", 0ull}, {"change", 0ull}, + {"outputs", json::array({json::array( + {"index placeholder", + "public_key placeholder", + "amount placeholder"} + )}) + }, {"_comment", ""}}; tx_json["recipient"] = json::array(); @@ -1911,6 +1917,12 @@ show_ringmemberstx_jsonhex(string const& tx_hash_str) {"viewkey", ""}, {"spendkey", ""}, {"amount", 0ull}, + {"outputs", json::array({json::array( + {"index placeholder", + "public_key placeholder", + "amount placeholder"} + )}) + }, {"_comment", ""}});