diff options
| author | Luke Dashjr <[email protected]> | 2012-09-01 07:12:50 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-09-01 07:12:56 +0000 |
| commit | 0689a7eb9ce0ae4b5f6e521b23103bcecf41b775 (patch) | |
| tree | 36ee555f77aa32c3a3bb7948477d00e32ccf4ce3 /src/rpcmining.cpp | |
| parent | RPC, cosmetic: Create rpcmining.cpp as new home for mining-related RPC code (diff) | |
| download | discoin-0689a7eb9ce0ae4b5f6e521b23103bcecf41b775.tar.xz discoin-0689a7eb9ce0ae4b5f6e521b23103bcecf41b775.zip | |
Bugfix: getblocktemplate: Accept optional "mode" parameter not being provided
Diffstat (limited to 'src/rpcmining.cpp')
| -rw-r--r-- | src/rpcmining.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index 5d983d21d..aac040c49 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -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"); } |