File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2188,7 +2188,6 @@ impl PendingSplice {
2188
2188
},
2189
2189
}
2190
2190
}
2191
-
2192
2191
}
2193
2192
2194
2193
/// Wrapper around a [`Transaction`] useful for caching the result of [`Transaction::compute_txid`].
@@ -9986,15 +9985,18 @@ where
9986
9985
&self.context.channel_id,
9987
9986
);
9988
9987
promote_splice_funding!(self, funding);
9989
- let funding_txo = self.funding.get_funding_txo();
9988
+ let funding_txo = self
9989
+ .funding
9990
+ .get_funding_txo()
9991
+ .expect("Splice FundingScope should always have a funding_txo");
9990
9992
let announcement_sigs = self.get_announcement_sigs(
9991
9993
node_signer,
9992
9994
chain_hash,
9993
9995
user_config,
9994
9996
best_block.height,
9995
9997
logger,
9996
9998
);
9997
- return Ok((funding_txo, announcement_sigs));
9999
+ return Ok((Some( funding_txo) , announcement_sigs));
9998
10000
}
9999
10001
10000
10002
let err = "unknown splice funding txid";
You can’t perform that action at this time.
0 commit comments