mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-03 09:56:38 -05:00
rpc: Properly document submitblock return value
Can be reviewed with --ignore-all-space
This commit is contained in:
parent
fae542c28b
commit
fa7ff0790e
1 changed files with 11 additions and 8 deletions
|
@ -941,14 +941,17 @@ static RPCHelpMan submitblock()
|
||||||
{
|
{
|
||||||
// We allow 2 arguments for compliance with BIP22. Argument 2 is ignored.
|
// We allow 2 arguments for compliance with BIP22. Argument 2 is ignored.
|
||||||
return RPCHelpMan{"submitblock",
|
return RPCHelpMan{"submitblock",
|
||||||
"\nAttempts to submit new block to network.\n"
|
"\nAttempts to submit new block to network.\n"
|
||||||
"See https://en.bitcoin.it/wiki/BIP_0022 for full specification.\n",
|
"See https://en.bitcoin.it/wiki/BIP_0022 for full specification.\n",
|
||||||
{
|
{
|
||||||
{"hexdata", RPCArg::Type::STR_HEX, RPCArg::Optional::NO, "the hex-encoded block data to submit"},
|
{"hexdata", RPCArg::Type::STR_HEX, RPCArg::Optional::NO, "the hex-encoded block data to submit"},
|
||||||
{"dummy", RPCArg::Type::STR, /* default */ "ignored", "dummy value, for compatibility with BIP22. This value is ignored."},
|
{"dummy", RPCArg::Type::STR, /* default */ "ignored", "dummy value, for compatibility with BIP22. This value is ignored."},
|
||||||
},
|
},
|
||||||
RPCResult{RPCResult::Type::NONE, "", "Returns JSON Null when valid, a string according to BIP22 otherwise"},
|
{
|
||||||
RPCExamples{
|
RPCResult{"If the block was accepted", RPCResult::Type::NONE, "", ""},
|
||||||
|
RPCResult{"Otherwise", RPCResult::Type::STR, "", "According to BIP22"},
|
||||||
|
},
|
||||||
|
RPCExamples{
|
||||||
HelpExampleCli("submitblock", "\"mydata\"")
|
HelpExampleCli("submitblock", "\"mydata\"")
|
||||||
+ HelpExampleRpc("submitblock", "\"mydata\"")
|
+ HelpExampleRpc("submitblock", "\"mydata\"")
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Reference in a new issue