@@ -28,6 +28,7 @@ import (
2828 "github.com/lightningnetwork/lnd/channeldb"
2929 lfn "github.com/lightningnetwork/lnd/fn"
3030 "github.com/lightningnetwork/lnd/funding"
31+ "github.com/lightningnetwork/lnd/htlcswitch"
3132 "github.com/lightningnetwork/lnd/input"
3233 "github.com/lightningnetwork/lnd/lncfg"
3334 "github.com/lightningnetwork/lnd/lnrpc"
@@ -37,7 +38,6 @@ import (
3738 "github.com/lightningnetwork/lnd/lnwire"
3839 "github.com/lightningnetwork/lnd/macaroons"
3940 "github.com/lightningnetwork/lnd/msgmux"
40- "github.com/lightningnetwork/lnd/routing"
4141 "github.com/lightningnetwork/lnd/sweep"
4242 "github.com/lightningnetwork/lnd/tlv"
4343 "google.golang.org/grpc"
@@ -696,14 +696,14 @@ func (s *Server) Stop() error {
696696
697697// A compile-time check to ensure that Server fully implements the
698698// lnwallet.AuxLeafStore, lnd.AuxDataParser, lnwallet.AuxSigner,
699- // msgmux.Endpoint, funding.AuxFundingController, routing.TlvTrafficShaper
699+ // msgmux.Endpoint, funding.AuxFundingController, htlcswitch.AuxTrafficShaper
700700// and chancloser.AuxChanCloser interfaces.
701701var _ lnwl.AuxLeafStore = (* Server )(nil )
702702var _ lnd.AuxDataParser = (* Server )(nil )
703703var _ lnwl.AuxSigner = (* Server )(nil )
704704var _ msgmux.Endpoint = (* Server )(nil )
705705var _ funding.AuxFundingController = (* Server )(nil )
706- var _ routing. TlvTrafficShaper = (* Server )(nil )
706+ var _ htlcswitch. AuxTrafficShaper = (* Server )(nil )
707707var _ chancloser.AuxChanCloser = (* Server )(nil )
708708var _ lnwl.AuxContractResolver = (* Server )(nil )
709709var _ sweep.AuxSweeper = (* Server )(nil )
0 commit comments