aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/mining.cpp
diff options
context:
space:
mode:
authorJorge Timón <[email protected]>2016-11-05 01:54:00 +0100
committerJorge Timón <[email protected]>2016-11-08 15:08:56 +0100
commit1adf82ac394ca16308e1004495b76529d54018ba (patch)
tree08e5c97d6a4d16448dde354cd4b6c2adb82d5454 /src/rpc/mining.cpp
parentMerge #9088: Reduce ambiguity of warning message (diff)
downloaddiscoin-1adf82ac394ca16308e1004495b76529d54018ba.tar.xz
discoin-1adf82ac394ca16308e1004495b76529d54018ba.zip
RPC: Give more details when "generate" fails
Diffstat (limited to 'src/rpc/mining.cpp')
-rw-r--r--src/rpc/mining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp
index 3e91a79a6..8824898fe 100644
--- a/src/rpc/mining.cpp
+++ b/src/rpc/mining.cpp
@@ -133,7 +133,7 @@ UniValue generateBlocks(boost::shared_ptr<CReserveScript> coinbaseScript, int nG
}
CValidationState state;
if (!ProcessNewBlock(state, Params(), NULL, pblock, true, NULL, false))
- throw JSONRPCError(RPC_INTERNAL_ERROR, "ProcessNewBlock, block not accepted");
+ throw JSONRPCError(RPC_INTERNAL_ERROR, strprintf("ProcessNewBlock: block not accepted: %s", FormatStateMessage(state)));
++nHeight;
blockHashes.push_back(pblock->GetHash().GetHex());