mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-08-05 22:44:50 +02:00
rpc: RPCResult Type of MempoolEntryDescription should be OBJ. If multiple entries are possible, wrapping Type should be OBJ_DYN. fixes #19579
This commit is contained in:
parent
40a04814d1
commit
ae4958be95
@ -525,9 +525,9 @@ static UniValue getrawmempool(const JSONRPCRequest& request)
|
|||||||
{RPCResult::Type::STR_HEX, "", "The transaction id"},
|
{RPCResult::Type::STR_HEX, "", "The transaction id"},
|
||||||
}},
|
}},
|
||||||
RPCResult{"for verbose = true",
|
RPCResult{"for verbose = true",
|
||||||
RPCResult::Type::OBJ, "", "",
|
RPCResult::Type::OBJ_DYN, "", "",
|
||||||
{
|
{
|
||||||
{RPCResult::Type::OBJ_DYN, "transactionid", "", MempoolEntryDescription()},
|
{RPCResult::Type::OBJ, "transactionid", "", MempoolEntryDescription()},
|
||||||
}},
|
}},
|
||||||
},
|
},
|
||||||
RPCExamples{
|
RPCExamples{
|
||||||
@ -556,7 +556,7 @@ static UniValue getmempoolancestors(const JSONRPCRequest& request)
|
|||||||
RPCResult::Type::ARR, "", "",
|
RPCResult::Type::ARR, "", "",
|
||||||
{{RPCResult::Type::STR_HEX, "", "The transaction id of an in-mempool ancestor transaction"}}},
|
{{RPCResult::Type::STR_HEX, "", "The transaction id of an in-mempool ancestor transaction"}}},
|
||||||
RPCResult{"for verbose = true",
|
RPCResult{"for verbose = true",
|
||||||
RPCResult::Type::OBJ_DYN, "transactionid", "", MempoolEntryDescription()},
|
RPCResult::Type::OBJ, "transactionid", "", MempoolEntryDescription()},
|
||||||
},
|
},
|
||||||
RPCExamples{
|
RPCExamples{
|
||||||
HelpExampleCli("getmempoolancestors", "\"mytxid\"")
|
HelpExampleCli("getmempoolancestors", "\"mytxid\"")
|
||||||
@ -616,9 +616,9 @@ static UniValue getmempooldescendants(const JSONRPCRequest& request)
|
|||||||
RPCResult::Type::ARR, "", "",
|
RPCResult::Type::ARR, "", "",
|
||||||
{{RPCResult::Type::STR_HEX, "", "The transaction id of an in-mempool descendant transaction"}}},
|
{{RPCResult::Type::STR_HEX, "", "The transaction id of an in-mempool descendant transaction"}}},
|
||||||
RPCResult{"for verbose = true",
|
RPCResult{"for verbose = true",
|
||||||
RPCResult::Type::OBJ, "", "",
|
RPCResult::Type::OBJ_DYN, "", "",
|
||||||
{
|
{
|
||||||
{RPCResult::Type::OBJ_DYN, "transactionid", "", MempoolEntryDescription()},
|
{RPCResult::Type::OBJ, "transactionid", "", MempoolEntryDescription()},
|
||||||
}},
|
}},
|
||||||
},
|
},
|
||||||
RPCExamples{
|
RPCExamples{
|
||||||
@ -674,7 +674,7 @@ static UniValue getmempoolentry(const JSONRPCRequest& request)
|
|||||||
{"txid", RPCArg::Type::STR_HEX, RPCArg::Optional::NO, "The transaction id (must be in mempool)"},
|
{"txid", RPCArg::Type::STR_HEX, RPCArg::Optional::NO, "The transaction id (must be in mempool)"},
|
||||||
},
|
},
|
||||||
RPCResult{
|
RPCResult{
|
||||||
RPCResult::Type::OBJ_DYN, "", "", MempoolEntryDescription()},
|
RPCResult::Type::OBJ, "", "", MempoolEntryDescription()},
|
||||||
RPCExamples{
|
RPCExamples{
|
||||||
HelpExampleCli("getmempoolentry", "\"mytxid\"")
|
HelpExampleCli("getmempoolentry", "\"mytxid\"")
|
||||||
+ HelpExampleRpc("getmempoolentry", "\"mytxid\"")
|
+ HelpExampleRpc("getmempoolentry", "\"mytxid\"")
|
||||||
|
Loading…
Reference in New Issue
Block a user