Merge pull request #1771 from luke-jr/bugfix_bip22_mode
Bugfix: getblocktemplate: Accept optional "mode" parameter not being provided
This commit is contained in:
commit
0e1be81a4a
1 changed files with 4 additions and 0 deletions
|
@ -225,6 +225,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…
Reference in a new issue