You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This method provides greater coin control when creating and sending
transactions. Rather than the wallet performing UTXO selection on its own,
only the specified inputs and outputs (with the exception of wallet change)
will be used.
This is intended to be a more ergonomic and easier to use alternative to the
raw transaction RPCs (createrawtransaction, signrawtransaction, and
sendrawtransaction).
Copy file name to clipboardExpand all lines: internal/rpchelp/helpdescs_en_US.go
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -869,6 +869,16 @@ var helpDescsEnUS = map[string]string{
869
869
"signedtransaction-sent": "Tells if the transaction was sent.",
870
870
"signedtransaction-signingresult": "Success or failure of signing.",
871
871
872
+
// SpendOutputsCmd help.
873
+
"spendoutputs--synopsis": "Create, sign, and publish a transaction spending the specified wallet outputs, and paying an array of address/amount pairs.\n"+
874
+
"Outputs must belong to the specified account, and change (if needed) is returned to an internal address of the same account.",
875
+
"spendoutputs-account": "Account of specified previous outpoints, and account used to return change",
876
+
"spendoutputs-previousoutpoints": `Array of outpoints in string encoding ("hash:index")`,
877
+
"spendoutputs-outputs": "Array of JSON objects, each specifying an address string and amount",
878
+
"spendoutputs--result0": "The published transaction hash",
879
+
"addressamountpair-address": "Address to pay",
880
+
"addressamountpair-amount": "Amount to pay the address",
881
+
872
882
// StakePoolUserInfoCmd help.
873
883
"stakepooluserinfo--synopsis": "Get user info for stakepool",
874
884
"stakepooluserinfo-user": "The id of the user to be looked up",
0 commit comments