mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-21 22:42:04 +01:00
parent
39d9bbe4ac
commit
fac8caaa62
3 changed files with 22 additions and 13 deletions
|
@ -790,7 +790,7 @@ static RPCHelpMan getblockfrompeer()
|
|||
{
|
||||
return RPCHelpMan{
|
||||
"getblockfrompeer",
|
||||
"\nAttempt to fetch block from a given peer.\n"
|
||||
"Attempt to fetch block from a given peer.\n"
|
||||
"\nWe must have the header for this block, e.g. using submitheader.\n"
|
||||
"Subsequent calls for the same block and a new peer will cause the response from the previous peer to be ignored.\n"
|
||||
"\nReturns an empty JSON object if the request was successfully scheduled.",
|
||||
|
@ -798,7 +798,7 @@ static RPCHelpMan getblockfrompeer()
|
|||
{"block_hash", RPCArg::Type::STR_HEX, RPCArg::Optional::NO, "The block hash to try to fetch"},
|
||||
{"peer_id", RPCArg::Type::NUM, RPCArg::Optional::NO, "The peer to fetch it from (see getpeerinfo for peer IDs)"},
|
||||
},
|
||||
RPCResult{RPCResult::Type::OBJ_EMPTY, "", /*optional=*/ false, "", {}},
|
||||
RPCResult{RPCResult::Type::OBJ, "", /*optional=*/false, "", {}},
|
||||
RPCExamples{
|
||||
HelpExampleCli("getblockfrompeer", "\"00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09\" 0")
|
||||
+ HelpExampleRpc("getblockfrompeer", "\"00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09\" 0")
|
||||
|
|
|
@ -830,16 +830,15 @@ void RPCResult::ToSections(Sections& sections, const OuterType outer_type, const
|
|||
return;
|
||||
}
|
||||
case Type::OBJ_DYN:
|
||||
case Type::OBJ_EMPTY: {
|
||||
sections.PushSection({indent + maybe_key + "{}", Description("empty JSON object")});
|
||||
return;
|
||||
}
|
||||
case Type::OBJ: {
|
||||
if (m_inner.empty()) {
|
||||
sections.PushSection({indent + maybe_key + "{}", Description("empty JSON object")});
|
||||
return;
|
||||
}
|
||||
sections.PushSection({indent + maybe_key + "{", Description("json object")});
|
||||
for (const auto& i : m_inner) {
|
||||
i.ToSections(sections, OuterType::OBJ, current_indent + 2);
|
||||
}
|
||||
CHECK_NONFATAL(!m_inner.empty());
|
||||
if (m_type == Type::OBJ_DYN && m_inner.back().m_type != Type::ELISION) {
|
||||
// If the dictionary keys are dynamic, use three dots for continuation
|
||||
sections.PushSection({indent_next + "...", ""});
|
||||
|
@ -883,7 +882,6 @@ bool RPCResult::MatchesType(const UniValue& result) const
|
|||
return UniValue::VARR == result.getType();
|
||||
}
|
||||
case Type::OBJ_DYN:
|
||||
case Type::OBJ_EMPTY:
|
||||
case Type::OBJ: {
|
||||
return UniValue::VOBJ == result.getType();
|
||||
}
|
||||
|
@ -891,6 +889,17 @@ bool RPCResult::MatchesType(const UniValue& result) const
|
|||
CHECK_NONFATAL(false);
|
||||
}
|
||||
|
||||
void RPCResult::CheckInnerDoc() const
|
||||
{
|
||||
if (m_type == Type::OBJ) {
|
||||
// May or may not be empty
|
||||
return;
|
||||
}
|
||||
// Everything else must either be empty or not
|
||||
const bool inner_needed{m_type == Type::ARR || m_type == Type::ARR_FIXED || m_type == Type::OBJ_DYN};
|
||||
CHECK_NONFATAL(inner_needed != m_inner.empty());
|
||||
}
|
||||
|
||||
std::string RPCArg::ToStringObj(const bool oneline) const
|
||||
{
|
||||
std::string res;
|
||||
|
|
|
@ -240,7 +240,6 @@ struct RPCResult {
|
|||
STR_AMOUNT, //!< Special string to represent a floating point amount
|
||||
STR_HEX, //!< Special string with only hex chars
|
||||
OBJ_DYN, //!< Special dictionary with keys that are not literals
|
||||
OBJ_EMPTY, //!< Special type to allow empty OBJ
|
||||
ARR_FIXED, //!< Special array that has a fixed number of entries
|
||||
NUM_TIME, //!< Special numeric to denote unix epoch time
|
||||
ELISION, //!< Special type to denote elision (...)
|
||||
|
@ -268,8 +267,7 @@ struct RPCResult {
|
|||
m_cond{std::move(cond)}
|
||||
{
|
||||
CHECK_NONFATAL(!m_cond.empty());
|
||||
const bool inner_needed{type == Type::ARR || type == Type::ARR_FIXED || type == Type::OBJ || type == Type::OBJ_DYN};
|
||||
CHECK_NONFATAL(inner_needed != inner.empty());
|
||||
CheckInnerDoc();
|
||||
}
|
||||
|
||||
RPCResult(
|
||||
|
@ -293,8 +291,7 @@ struct RPCResult {
|
|||
m_description{std::move(description)},
|
||||
m_cond{}
|
||||
{
|
||||
const bool inner_needed{type == Type::ARR || type == Type::ARR_FIXED || type == Type::OBJ || type == Type::OBJ_DYN};
|
||||
CHECK_NONFATAL(inner_needed != inner.empty());
|
||||
CheckInnerDoc();
|
||||
}
|
||||
|
||||
RPCResult(
|
||||
|
@ -312,6 +309,9 @@ struct RPCResult {
|
|||
std::string ToDescriptionString() const;
|
||||
/** Check whether the result JSON type matches. */
|
||||
bool MatchesType(const UniValue& result) const;
|
||||
|
||||
private:
|
||||
void CheckInnerDoc() const;
|
||||
};
|
||||
|
||||
struct RPCResults {
|
||||
|
|
Loading…
Add table
Reference in a new issue