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
In splicing the channel has to sign the previous funding as an input to the new funding transactions. For this, the EcdsaChannelSigner trait has to be extended.
The proposed solution is visible in #3274, the EcdsaChannelSigner trait has been extended with this method:
/// Create a signature for a splicing funding transaction, for the input which is the previous funding tx.fnsign_splicing_funding_input(&self,splicing_tx:&Transaction,splice_prev_funding_input_index:u16,splice_prev_funding_input_value:u64,redeem_script:&Script,secp_ctx:&Secp256k1<secp256k1::All>) -> Result<Signature,()>;
This is in preparation for Splicing (#1621 )
In splicing the channel has to sign the previous funding as an input to the new funding transactions. For this, the
EcdsaChannelSigner
trait has to be extended.The proposed solution is visible in #3274, the
EcdsaChannelSigner
trait has been extended with this method:with the implementation:
(files
src/sign/mod.rs
src/sign/ecdsa.rs
src/ln/channel.rs
)The text was updated successfully, but these errors were encountered: