From 1db13d50639d070ca5b89564e6b790b77279f03b Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 11 Jul 2016 21:53:09 -0700 Subject: [PATCH] Replace index with height in help message for getblocksubsidy RPC call. --- src/rpcmining.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index c7092db74..0cbce438d 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -771,10 +771,10 @@ Value getblocksubsidy(const Array& params, bool fHelp) { if (fHelp || params.size() != 1) throw runtime_error( - "getblocksubsidy index\n" + "getblocksubsidy height\n" "\nReturns block subsidy reward, taking into account the mining slow start, of block at index provided.\n" "\nArguments:\n" - "1. index (numeric, required) The block index\n" + "1. height (numeric, required) The block height.\n" "\nResult:\n" "amount (numeric) The block reward amount in ZEC.\n" "\nExamples:\n"