Browse Source

fix getaddresstxids help

pull/27/head
Alrighttt 5 years ago
committed by GitHub
parent
commit
462320cfaf
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/rpc/misc.cpp

4
src/rpc/misc.cpp

@ -1432,8 +1432,8 @@ UniValue getsnapshot(const UniValue& params, bool fHelp)
UniValue getaddresstxids(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 2)
throw runtime_error(
if (fHelp || params.size() > 2 || params.size() < 1)
throw runtime_error
"getaddresstxids (ccvout)\n"
"\nReturns the txids for an address(es) (requires addressindex to be enabled).\n"
"\nArguments:\n"

Loading…
Cancel
Save