Merge pull request #6234

ef5fca8 fix rpcmining/getblocktemplate univalue transition logic error (Jonas Schnelli)
This commit is contained in:
Wladimir J. van der Laan 2015-06-05 06:06:32 +02:00
commit d38cd47fe3
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -398,7 +398,7 @@ UniValue getblocktemplate(const UniValue& params, bool fHelp)
if (strMode == "proposal")
{
const UniValue& dataval = find_value(oparam, "data");
if (dataval.isStr())
if (!dataval.isStr())
throw JSONRPCError(RPC_TYPE_ERROR, "Missing data String key for proposal");
CBlock block;