2
0
mirror of https://github.com/lightninglabs/loop synced 2024-11-08 01:10:29 +00:00
loop/loopd/utils.go

45 lines
1017 B
Go
Raw Normal View History

package loopd
2019-03-06 20:13:50 +00:00
import (
"os"
"path/filepath"
"github.com/lightninglabs/loop"
"github.com/lightninglabs/loop/lndclient"
2019-03-06 20:13:50 +00:00
)
// getLnd returns an instance of the lnd services proxy.
2019-03-07 10:37:28 +00:00
func getLnd(network string, cfg *lndConfig) (*lndclient.GrpcLndServices, error) {
return lndclient.NewLndServices(
cfg.Host, "client", network, cfg.MacaroonDir, cfg.TLSPath,
2019-03-06 20:13:50 +00:00
)
}
// getClient returns an instance of the swap client.
func getClient(network, swapServer string, insecure bool, tlsPathServer string,
lnd *lndclient.LndServices) (*loop.Client, func(), error) {
2019-03-06 20:13:50 +00:00
storeDir, err := getStoreDir(network)
if err != nil {
return nil, nil, err
}
swapClient, cleanUp, err := loop.NewClient(
storeDir, swapServer, insecure, tlsPathServer, lnd,
2019-03-06 20:13:50 +00:00
)
if err != nil {
return nil, nil, err
}
return swapClient, cleanUp, nil
}
func getStoreDir(network string) (string, error) {
2019-03-07 10:37:28 +00:00
dir := filepath.Join(loopDirBase, network)
2019-03-06 20:13:50 +00:00
if err := os.MkdirAll(dir, os.ModePerm); err != nil {
return "", err
}
return dir, nil
}