From aba1d946733749c232750349d5ed96a5f0b02b5c Mon Sep 17 00:00:00 2001 From: Alfredo Garcia Date: Thu, 2 Jan 2020 11:38:38 -0300 Subject: [PATCH] add documentation to flag --- src/wallet/rpcwallet.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 6dae48435..3cc6709b5 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -603,7 +603,8 @@ UniValue getreceivedbyaddress(const UniValue& params, bool fHelp) "\nReturns the total amount received by the given Zcash address in transactions with at least minconf confirmations.\n" "\nArguments:\n" "1. \"zcashaddress\" (string, required) The Zcash address for transactions.\n" - "2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n" + "2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n" + "3. inzatoshi (bool, optional, default=false) Get the result amount as an integer.\n" "\nResult:\n" "amount (numeric) The total amount in " + CURRENCY_UNIT + " received at this address.\n" "\nExamples:\n"