update aperture to include lsat to l402 renaming

Fix the build:
go mod tidy
sed 's@\<lsat\>@l402@g' -i `git grep -l -w aperture/lsat`
make rpc
This commit is contained in:
Boris Nagaev 2024-04-17 14:13:01 -03:00
parent b99cde172a
commit bfc3f44aa1
No known key found for this signature in database
10 changed files with 40 additions and 38 deletions

View file

@ -3,7 +3,7 @@ package loop
import (
"time"
"github.com/lightninglabs/aperture/lsat"
"github.com/lightninglabs/aperture/l402"
"github.com/lightninglabs/lndclient"
"github.com/lightninglabs/loop/loopdb"
"google.golang.org/grpc"
@ -15,7 +15,7 @@ type clientConfig struct {
Server swapServerClient
Conn *grpc.ClientConn
Store loopdb.SwapStore
LsatStore lsat.Store
LsatStore l402.Store
CreateExpiryTimer func(expiry time.Duration) <-chan time.Time
LoopOutMaxParts uint32
}