funding: add ChannelReady hook

This commit is contained in:
Oliver Gugger 2024-05-02 10:01:07 +02:00
parent 82a969bba5
commit 3ba83dd111
No known key found for this signature in database
GPG Key ID: 8E4256593F177720
2 changed files with 29 additions and 0 deletions

View File

@ -30,6 +30,11 @@ type AuxFundingController interface {
// tapscript root that should be used when creating any musig2 sessions
// for a channel.
DeriveTapscriptRoot(PendingChanID) (fn.Option[chainhash.Hash], error)
// ChannelReady is called when a channel has been fully opened and is
// ready to be used. This can be used to perform any final setup or
// cleanup.
ChannelReady(openChan *channeldb.OpenChannel) error
}
// descFromPendingChanID takes a pending channel ID, that may already be

View File

@ -4008,6 +4008,19 @@ func (f *Manager) handleChannelReady(peer lnpeer.Peer, //nolint:funlen
PubNonce: remoteNonce,
}),
)
err = fn.MapOptionZ(
f.cfg.AuxFundingController,
func(controller AuxFundingController) error {
return controller.ChannelReady(channel)
},
)
if err != nil {
cid := newChanIdentifier(msg.ChanID)
f.sendWarning(peer, cid, err)
return
}
}
// The channel_ready message contains the next commitment point we'll
@ -4094,6 +4107,17 @@ func (f *Manager) handleChannelReadyReceived(channel *channeldb.OpenChannel,
log.Debugf("Channel(%v) with ShortChanID %v: successfully "+
"added to router graph", chanID, scid)
err = fn.MapOptionZ(
f.cfg.AuxFundingController,
func(controller AuxFundingController) error {
return controller.ChannelReady(channel)
},
)
if err != nil {
return fmt.Errorf("failed notifying aux funding controller "+
"about channel ready: %w", err)
}
// Give the caller a final update notifying them that the channel is
fundingPoint := channel.FundingOutpoint
cp := &lnrpc.ChannelPoint{