input: ensure sessionOpts is properly threaded through

This commit is contained in:
Olaoluwa Osuntokun
2023-07-11 18:56:15 -07:00
parent d2bc4f29e1
commit 349eee3263
6 changed files with 74 additions and 69 deletions

View File

@@ -3,6 +3,7 @@
package lnwallet
import (
"github.com/lightningnetwork/lnd/channeldb"
"github.com/lightningnetwork/lnd/keychain"
"github.com/lightningnetwork/lnd/shachain"
)
@@ -50,7 +51,7 @@ func (l *LightningWallet) nextRevocationProducer(res *ChannelReservation,
// Once we have the root, we can then generate our shachain producer
// and from that generate the per-commitment point.
shaChainRoot := shachain.NewRevocationProducer(revRoot)
taprootShaChainRoot, err := deriveMusig2Shachain(shaChainRoot)
taprootShaChainRoot, err := channeldb.DeriveMusig2Shachain(shaChainRoot)
if err != nil {
return nil, nil, err
}