From dbf1c23a81d17e85f31ae8b09547c4b6bae066c5 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 19 Dec 2019 17:25:07 -0500 Subject: [PATCH] Add rpc docs about organic xtns --- src/rpc/blockchain.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index d9a9d221f..90cab6870 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1924,6 +1924,14 @@ UniValue getchaintxstats(const UniValue& params, bool fHelp, const CPubKey& mypk " \"shielding_payments_percent\": (numeric) The percentage of shielding payments.\n" " \"deshielding_payments_percent\": (numeric) The percentage of deshielding payments.\n" " },\n" + " \"organic\": { (string) The set of stats about organic transactions, i.e. those that are not coinbase and not notarizations\n" + " \"fully_shielded_tx_percent\": (numeric) The percentage of fully shielded organic transactions.\n" + " \"shielding_tx_percent\": (numeric) The percentage of shielding organic transactions.\n" + " \"deshielding_tx_percent\": (numeric) The percentage of deshielding organic transactions.\n" + " \"fully_shielded_payments_percent\": (numeric) The percentage of fully shielded organic payments.\n" + " \"shielding_payments_percent\": (numeric) The percentage of shielding organic payments.\n" + " \"deshielding_payments_percent\": (numeric) The percentage of deshielding organic payments.\n" + " }\n" "}\n" "\nExamples:\n" + HelpExampleCli("getchaintxstats", "")