File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -203,17 +203,17 @@ use crate::ln::script::ShutdownScript;
203
203
/// The components of a splice's funding transaction that are contributed by one party.
204
204
#[cfg(splicing)]
205
205
pub enum SpliceContribution {
206
- /// When only inputs -- except for a possible change output -- are contributed to the splice .
206
+ /// When funds are added to a channel .
207
207
SpliceIn {
208
208
/// The amount to contribute to the splice.
209
209
value: Amount,
210
210
211
- /// The inputs used to meet the contributed amount. Any excess amount will be sent to a
212
- /// change output.
211
+ /// The inputs used to include in the splice's funding transaction used to meet the
212
+ /// contributed amount. Any excess amount will be sent to a change output.
213
213
inputs: Vec<FundingTxInput>,
214
214
215
- /// An optional change output script. This will be used if needed or, if not set, generated
216
- /// using `SignerProvider::get_destination_script`.
215
+ /// An optional change output script. This will be used if needed or, when not set,
216
+ /// generated using `SignerProvider::get_destination_script`.
217
217
change_script: Option<ScriptBuf>,
218
218
},
219
219
}
You can’t perform that action at this time.
0 commit comments