From e0fa061cc9f09695a081171a83ede61cf545d9b0 Mon Sep 17 00:00:00 2001 From: dimxy Date: Tue, 16 Apr 2019 13:25:07 +0500 Subject: [PATCH] help message --- src/wallet/rpcwallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 8d6af20c2..a155603d9 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -6932,7 +6932,7 @@ UniValue pricesinfo(const UniValue& params, bool fHelp) { uint256 bettxid; int32_t height; if ( fHelp || params.size() != 1 && params.size() != 2) - throw runtime_error("pricesinfo fundingtxid [height]\n"); + throw runtime_error("pricesinfo bettxid [height]\n"); if ( ensure_CCrequirements(EVAL_PRICES) < 0 ) throw runtime_error("to use CC contracts, you need to launch daemon with valid -pubkey= for an address in your wallet\n"); bettxid = Parseuint256((char *)params[0].get_str().c_str());