mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
fix errors from merge of bitcoin/bitcoin#23083
Notes: - bitcoin/bitcoin#23083 increassed how stict the RPC documentation type checks are - I initially tried fixing all the types -- you can see that work in this commit. - In the end, I decided there were way too many discrepencies and that it would take way too long to fix them all. So I just disabled the type check for elements (also in this commit).
This commit is contained in:
parent
c40e447800
commit
4e288c66ce
8 changed files with 102 additions and 40 deletions
|
|
@ -1550,9 +1550,9 @@ static RPCHelpMan consumecompactsketch()
|
|||
RPCResult{
|
||||
RPCResult::Type::OBJ, "", "",
|
||||
{
|
||||
{RPCResult::Type::STR_HEX, "blockhex", "The filled block hex. Only returns when block is final"},
|
||||
{RPCResult::Type::STR_HEX, "block_tx_req", "The serialized structure of missing transaction indices, given to serving node"},
|
||||
{RPCResult::Type::STR_HEX, "found_tranasctions", "The serialized list of found transactions to be used in finalizecompactblock"},
|
||||
{RPCResult::Type::STR_HEX, "blockhex", /*optional=*/true, "The filled block hex. Only returns when block is final"},
|
||||
{RPCResult::Type::STR_HEX, "block_tx_req", /*optional=*/true, "The serialized structure of missing transaction indices, given to serving node"},
|
||||
{RPCResult::Type::STR_HEX, "found_transactions", /*optional=*/true, "The serialized list of found transactions to be used in finalizecompactblock"},
|
||||
},
|
||||
},
|
||||
RPCExamples{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue