Merge #9042: [rpc] ParseHash: Fail when length is not 64

fa32619 [rpc] ParseHash: Fail when length is not 64 (MarcoFalke)
This commit is contained in:
Wladimir J. van der Laan 2016-11-02 21:03:50 +01:00
commit bc785d7185
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -147,6 +147,8 @@ uint256 ParseHashV(const UniValue& v, string strName)
strHex = v.get_str();
if (!IsHex(strHex)) // Note: IsHex("") is false
throw JSONRPCError(RPC_INVALID_PARAMETER, strName+" must be hexadecimal string (not '"+strHex+"')");
if (64 != strHex.length())
throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("%s must be of length %d (not %d)", strName, 64, strHex.length()));
uint256 result;
result.SetHex(strHex);
return result;