Merge pull request #8421 from ProofOfKeags/refactor/lnwallet/redundant-fields

lnwallet: remove redundant unused fields
This commit is contained in:
Yong 2024-01-26 02:59:08 +08:00 committed by GitHub
commit 2f1468000d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1323,15 +1323,6 @@ type LightningChannel struct {
localUpdateLog *updateLog
remoteUpdateLog *updateLog
// LocalFundingKey is the public key under control by the wallet that
// was used for the 2-of-2 funding output which created this channel.
LocalFundingKey *btcec.PublicKey
// RemoteFundingKey is the public key for the remote channel counter
// party which used for the 2-of-2 funding output which created this
// channel.
RemoteFundingKey *btcec.PublicKey
// log is a channel-specific logging instance.
log btclog.Logger
@ -1448,8 +1439,6 @@ func NewLightningChannel(signer input.Signer,
remoteUpdateLog: remoteUpdateLog,
ChanPoint: &state.FundingOutpoint,
Capacity: state.Capacity,
LocalFundingKey: state.LocalChanCfg.MultiSigKey.PubKey,
RemoteFundingKey: state.RemoteChanCfg.MultiSigKey.PubKey,
taprootNonceProducer: taprootNonceProducer,
log: build.NewPrefixLog(logPrefix, walletLog),
opts: opts,