fix rpcmining/getblocktemplate univalue transition logic error

This commit is contained in:
Jonas Schnelli 2015-06-04 21:39:44 +02:00
parent 44c7474446
commit ef5fca8b80
1 changed files with 1 additions and 1 deletions

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;