diff options
Diffstat (limited to 'src/rpcmining.cpp')
-rw-r--r-- | src/rpcmining.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index b063159721..6b390b1b95 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -592,7 +592,12 @@ Value submitblock(const Array& params, bool fHelp) throw JSONRPCError(RPC_VERIFY_ERROR, strRejectReason); } if (state.IsInvalid()) - return "rejected"; // TODO: report validation state + { + std::string strRejectReason = state.GetRejectReason(); + if (strRejectReason.empty()) + return "rejected"; + return strRejectReason; + } return Value::null; } |