-
Notifications
You must be signed in to change notification settings - Fork 912
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiwithdraw #3812
Multiwithdraw #3812
Conversation
fa159fb
to
c9ecc3f
Compare
Reimplemented as a plugin. Not sure how this relates to #3867.. |
a1425ca
to
dbf0e2f
Compare
Rebased, also added missing dust limit checks. |
dbf0e2f
to
3a6ba87
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ack c920925
"multiwithdraw", | ||
"bitcoin", | ||
"Send to multiple {outputs} via a single Bitcoin transaction.", | ||
"Send to multiple {outputs} at optiona {feerate}, spending " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: optional
p_req("outputs", param_outputs_array, &mw->outputs), | ||
p_opt("feerate", param_string, &mw->feerate), | ||
p_opt_def("minconf", param_number, &mw->minconf, 1), | ||
p_opt("utxos", param_string, &mw->utxos), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
param_string is ugly here, BTW. We should have a param_utxos?
3a6ba87
to
0cefc02
Compare
Trivial rebase on top of #3973 (which is about to be merged, once Travis is happy) |
…spending commands.
Fixes: ElementsProject#2679 Changelog-Added: JSON-RPC: New `multiwithdraw` command to batch multiple onchain sends in a single transaction. Note it shuffles inputs and outputs, does not use BIP69.
0cefc02
to
5a6222c
Compare
Ack 5a6222c |
Fixes: #2679