Bugfix: getblocktemplate: Accept optional "mode" parameter not being provided

pull/59/head
Luke Dashjr 12 years ago
parent 7600e7fc39
commit 0689a7eb9c

@ -228,6 +228,10 @@ Value getblocktemplate(const Array& params, bool fHelp)
const Value& modeval = find_value(oparam, "mode");
if (modeval.type() == str_type)
strMode = modeval.get_str();
else if (modeval.type() == null_type)
{
/* Do nothing */
}
else
throw JSONRPCError(-8, "Invalid mode");
}

Loading…
Cancel
Save