mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-30 10:42:23 +02:00
RPC: submitblock: Support for returning specific rejection reasons
This commit is contained in:
@ -592,7 +592,12 @@ Value submitblock(const Array& params, bool fHelp)
|
|||||||
throw JSONRPCError(RPC_VERIFY_ERROR, strRejectReason);
|
throw JSONRPCError(RPC_VERIFY_ERROR, strRejectReason);
|
||||||
}
|
}
|
||||||
if (state.IsInvalid())
|
if (state.IsInvalid())
|
||||||
return "rejected"; // TODO: report validation state
|
{
|
||||||
|
std::string strRejectReason = state.GetRejectReason();
|
||||||
|
if (strRejectReason.empty())
|
||||||
|
return "rejected";
|
||||||
|
return strRejectReason;
|
||||||
|
}
|
||||||
|
|
||||||
return Value::null;
|
return Value::null;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user