|
|
|
@ -815,13 +815,14 @@ static RPCHelpMan submitpackage()
|
|
|
|
|
{
|
|
|
|
|
return RPCHelpMan{"submitpackage",
|
|
|
|
|
"Submit a package of raw transactions (serialized, hex-encoded) to local node.\n"
|
|
|
|
|
"The package must consist of a child with its parents, and none of the parents may depend on one another.\n"
|
|
|
|
|
"The package will be validated according to consensus and mempool policy rules. If any transaction passes, it will be accepted to mempool.\n"
|
|
|
|
|
"This RPC is experimental and the interface may be unstable. Refer to doc/policy/packages.md for documentation on package policies.\n"
|
|
|
|
|
"Warning: successful submission does not mean the transactions will propagate throughout the network.\n"
|
|
|
|
|
,
|
|
|
|
|
{
|
|
|
|
|
{"package", RPCArg::Type::ARR, RPCArg::Optional::NO, "An array of raw transactions.",
|
|
|
|
|
{"package", RPCArg::Type::ARR, RPCArg::Optional::NO, "An array of raw transactions.\n"
|
|
|
|
|
"The package must solely consist of a child and its parents. None of the parents may depend on each other.\n"
|
|
|
|
|
"The package must be topologically sorted, with the child being the last element in the array.",
|
|
|
|
|
{
|
|
|
|
|
{"rawtx", RPCArg::Type::STR_HEX, RPCArg::Optional::OMITTED, ""},
|
|
|
|
|
},
|
|
|
|
|