config+serer: add AuxFundingController as top level cfg option

This commit is contained in:
Olaoluwa Osuntokun
2024-04-04 17:48:11 -07:00
committed by Oliver Gugger
parent 84cc9a1f0b
commit 65f54cb075
2 changed files with 11 additions and 3 deletions

View File

@@ -1530,9 +1530,10 @@ func newServer(cfg *Config, listenAddrs []net.Addr,
EnableUpfrontShutdown: cfg.EnableUpfrontShutdown,
MaxAnchorsCommitFeeRate: chainfee.SatPerKVByte(
s.cfg.MaxCommitFeeRateAnchors * 1000).FeePerKWeight(),
DeleteAliasEdge: deleteAliasEdge,
AliasManager: s.aliasMgr,
IsSweeperOutpoint: s.sweeper.IsSweeperOutpoint,
DeleteAliasEdge: deleteAliasEdge,
AliasManager: s.aliasMgr,
IsSweeperOutpoint: s.sweeper.IsSweeperOutpoint,
AuxFundingController: implCfg.AuxFundingController,
})
if err != nil {
return nil, err