- package loop
-
- import (
- "time"
-
- "github.com/lightninglabs/lndclient"
- "github.com/lightninglabs/loop/loopdb"
- "github.com/lightninglabs/loop/lsat"
- )
-
- // clientConfig contains config items for the swap client.
- type clientConfig struct {
- LndServices *lndclient.LndServices
- Server swapServerClient
- Store loopdb.SwapStore
- LsatStore lsat.Store
- CreateExpiryTimer func(expiry time.Duration) <-chan time.Time
- }
|