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", "")