@@ -1014,9 +1014,9 @@ static RPCHelpMan bumpfee_helper(std::string method_name)
1014
1014
" are replaceable).\n " },
1015
1015
{" estimate_mode" , RPCArg::Type::STR, RPCArg::Default{" unset" }, " The fee estimate mode, must be one of (case insensitive):\n "
1016
1016
" \" " + FeeModes (" \"\n\" " ) + " \" " },
1017
- {" outputs" , RPCArg::Type::ARR, RPCArg::Default{UniValue::VARR}, " New outputs ( key-value pairs) which will replace \n "
1018
- " the original ones, if provided. Each address can only appear once and there can \n "
1019
- " only be one \" data \" object .\n "
1017
+ {" outputs" , RPCArg::Type::ARR, RPCArg::Default{UniValue::VARR}, " The outputs specified as key-value pairs. \n "
1018
+ " Each key may only appear once, i.e. there can only be one 'data' output, and no address may be duplicated. \n "
1019
+ " At least one output of either type must be specified .\n "
1020
1020
" Cannot be provided if 'reduce_output' is specified." ,
1021
1021
OutputsDoc (),
1022
1022
RPCArgOptions{.skip_type_check = true }},
@@ -1188,8 +1188,9 @@ RPCHelpMan send()
1188
1188
" \n EXPERIMENTAL warning: this call may be changed in future releases.\n "
1189
1189
" \n Send a transaction.\n " ,
1190
1190
{
1191
- {" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The outputs (key-value pairs), where none of the keys are duplicated.\n "
1192
- " That is, each address can only appear once and there can only be one 'data' object.\n "
1191
+ {" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The outputs specified as key-value pairs.\n "
1192
+ " Each key may only appear once, i.e. there can only be one 'data' output, and no address may be duplicated.\n "
1193
+ " At least one output of either type must be specified.\n "
1193
1194
" For convenience, a dictionary, which holds the key-value pairs directly, is also accepted." ,
1194
1195
OutputsDoc (),
1195
1196
RPCArgOptions{.skip_type_check = true }},
@@ -1638,8 +1639,9 @@ RPCHelpMan walletcreatefundedpsbt()
1638
1639
},
1639
1640
},
1640
1641
},
1641
- {" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The outputs (key-value pairs), where none of the keys are duplicated.\n "
1642
- " That is, each address can only appear once and there can only be one 'data' object.\n "
1642
+ {" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The outputs specified as key-value pairs.\n "
1643
+ " Each key may only appear once, i.e. there can only be one 'data' output, and no address may be duplicated.\n "
1644
+ " At least one output of either type must be specified.\n "
1643
1645
" For compatibility reasons, a dictionary, which holds the key-value pairs directly, is also\n "
1644
1646
" accepted as second parameter." ,
1645
1647
OutputsDoc (),
0 commit comments