mirror of
https://github.com/lightninglabs/loop
synced 2024-11-04 06:00:21 +00:00
0e7927ac96
git mv ./cmd/loop/lsat.go ./cmd/loop/l402.go sed 's@lsat@l402@g' -i `git grep -l lsat` sed 's@Lsat@L402@g' -i `git grep -l Lsat` sed 's@LSAT@L402@g' -i `git grep -l LSAT` make rpc Updated release_notes.md.
22 lines
538 B
Go
22 lines
538 B
Go
package loop
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/lightninglabs/aperture/l402"
|
|
"github.com/lightninglabs/lndclient"
|
|
"github.com/lightninglabs/loop/loopdb"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
// clientConfig contains config items for the swap client.
|
|
type clientConfig struct {
|
|
LndServices *lndclient.LndServices
|
|
Server swapServerClient
|
|
Conn *grpc.ClientConn
|
|
Store loopdb.SwapStore
|
|
L402Store l402.Store
|
|
CreateExpiryTimer func(expiry time.Duration) <-chan time.Time
|
|
LoopOutMaxParts uint32
|
|
}
|