server+lncfg: add new config flag to enable wumbo channels
In this commit, we add a new config flag to enable wumbo channels, with the default being that nodes reject all wumbo channel attempts.
This commit is contained in:
parent
43a355321f
commit
5345069b16
@ -12,4 +12,15 @@ type ProtocolOptions struct {
|
|||||||
// ExperimentalProtocol is a sub-config that houses any experimental
|
// ExperimentalProtocol is a sub-config that houses any experimental
|
||||||
// protocol features that also require a build-tag to activate.
|
// protocol features that also require a build-tag to activate.
|
||||||
ExperimentalProtocol
|
ExperimentalProtocol
|
||||||
|
|
||||||
|
// WumboChans should be set if we want to enable support for wumbo
|
||||||
|
// (channels larger than 0.16 BTC) channels, which is the opposite of
|
||||||
|
// mini.
|
||||||
|
WumboChans bool `long:"wumbo-channels" description:"if set, then lnd will create and accept requests for channels larger chan 0.16 BTC"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wumbo returns true if lnd should permit the creation and acceptance of wumbo
|
||||||
|
// channels.
|
||||||
|
func (l *ProtocolOptions) Wumbo() bool {
|
||||||
|
return l.WumboChans
|
||||||
}
|
}
|
||||||
|
@ -410,6 +410,7 @@ func newServer(cfg *Config, listenAddrs []net.Addr, chanDB *channeldb.DB,
|
|||||||
NoTLVOnion: cfg.ProtocolOptions.LegacyOnion(),
|
NoTLVOnion: cfg.ProtocolOptions.LegacyOnion(),
|
||||||
NoStaticRemoteKey: cfg.ProtocolOptions.NoStaticRemoteKey(),
|
NoStaticRemoteKey: cfg.ProtocolOptions.NoStaticRemoteKey(),
|
||||||
NoAnchors: !cfg.ProtocolOptions.AnchorCommitments(),
|
NoAnchors: !cfg.ProtocolOptions.AnchorCommitments(),
|
||||||
|
NoWumbo: !cfg.ProtocolOptions.Wumbo(),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
Loading…
Reference in New Issue
Block a user