getblockhash: throw JSONRPCError (not runtime_error)

This commit is contained in:
dexX7 2014-10-24 15:43:40 +02:00
parent 3552d4b859
commit 6261e6e6e0
No known key found for this signature in database
GPG Key ID: 7675E31CF5719832
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ Value getblockhash(const Array& params, bool fHelp)
int nHeight = params[0].get_int();
if (nHeight < 0 || nHeight > chainActive.Height())
throw runtime_error("Block number out of range.");
throw JSONRPCError(RPC_INVALID_PARAMETER, "Block height out of range");
CBlockIndex* pblockindex = chainActive[nHeight];
return pblockindex->GetBlockHash().GetHex();