loop: update all import paths to public repo

This commit is contained in:
Olaoluwa Osuntokun 2019-03-06 15:29:44 -08:00
parent a1cf04208e
commit a770e3d7c1
No known key found for this signature in database
GPG key ID: CE58F7F8E20FD9A2
29 changed files with 83 additions and 83 deletions

View file

@ -10,9 +10,9 @@ import (
"time"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/nautilus/sweep"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/lndclient"
"github.com/lightninglabs/loop/sweep"
"github.com/lightninglabs/loop/utils"
"github.com/lightningnetwork/lnd/lntypes"
)

View file

@ -8,8 +8,8 @@ import (
"testing"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/nautilus/test"
"github.com/lightninglabs/loop/lndclient"
"github.com/lightninglabs/loop/test"
"github.com/lightningnetwork/lnd/lntypes"
)

View file

@ -3,7 +3,7 @@ package client
import (
"time"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/loop/lndclient"
)
// clientConfig contains config items for the swap client.

View file

@ -7,8 +7,8 @@ import (
"sync/atomic"
"time"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/nautilus/sweep"
"github.com/lightninglabs/loop/lndclient"
"github.com/lightninglabs/loop/sweep"
"github.com/lightningnetwork/lnd/queue"
)

View file

@ -9,7 +9,7 @@ import (
"github.com/btcsuite/btcd/chaincfg"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/test"
"github.com/lightninglabs/loop/test"
"github.com/lightningnetwork/lnd/lntypes"
"github.com/lightningnetwork/lnd/lnwire"
"github.com/lightningnetwork/lnd/zpay32"

View file

@ -13,7 +13,7 @@ import (
"github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcutil"
"github.com/coreos/bbolt"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/utils"
"github.com/lightningnetwork/lnd/lntypes"
)

View file

@ -5,7 +5,7 @@ import (
"testing"
"time"
"github.com/lightninglabs/nautilus/test"
"github.com/lightninglabs/loop/test"
"github.com/lightningnetwork/lnd/lntypes"
)

View file

@ -7,7 +7,7 @@ import (
"testing"
"time"
"github.com/lightninglabs/nautilus/test"
"github.com/lightninglabs/loop/test"
)
func TestStore(t *testing.T) {

View file

@ -4,8 +4,8 @@ import (
"context"
"time"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/lndclient"
"github.com/lightninglabs/loop/utils"
"github.com/lightningnetwork/lnd/lntypes"
)

View file

@ -11,7 +11,7 @@ import (
"github.com/btcsuite/btcd/btcec"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/rpc"
"github.com/lightninglabs/loop/rpc"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
)

View file

@ -7,8 +7,8 @@ import (
"github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/sweep"
"github.com/lightninglabs/nautilus/test"
"github.com/lightninglabs/loop/sweep"
"github.com/lightninglabs/loop/test"
"github.com/lightningnetwork/lnd/chainntnfs"
"github.com/lightningnetwork/lnd/lntypes"
)

View file

@ -9,9 +9,9 @@ import (
"github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/nautilus/sweep"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/lndclient"
"github.com/lightninglabs/loop/sweep"
"github.com/lightninglabs/loop/utils"
"github.com/lightningnetwork/lnd/chainntnfs"
"github.com/lightningnetwork/lnd/lntypes"
)

View file

@ -6,9 +6,9 @@ import (
"testing"
"time"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/nautilus/sweep"
"github.com/lightninglabs/nautilus/test"
"github.com/lightninglabs/loop/lndclient"
"github.com/lightninglabs/loop/sweep"
"github.com/lightninglabs/loop/test"
)
// TestLateHtlcPublish tests that the client is not revealing the preimage if

View file

@ -8,11 +8,11 @@ import (
"strconv"
"time"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/utils"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/cmd/swapd/rpc"
"github.com/lightninglabs/loop/cmd/swapd/rpc"
"github.com/urfave/cli"
"google.golang.org/grpc"
)

View file

@ -10,8 +10,8 @@ import (
"sync"
"time"
"github.com/lightninglabs/nautilus/client"
clientrpc "github.com/lightninglabs/nautilus/cmd/swapd/rpc"
"github.com/lightninglabs/loop/client"
clientrpc "github.com/lightninglabs/loop/cmd/swapd/rpc"
"github.com/urfave/cli"
"google.golang.org/grpc"
)

View file

@ -6,7 +6,7 @@ import (
"sync"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/client"
"github.com/lightninglabs/loop/client"
"github.com/lightningnetwork/lnd/lntypes"
"github.com/urfave/cli"
)

View file

@ -7,12 +7,12 @@ import (
"github.com/lightningnetwork/lnd/queue"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/lndclient"
"github.com/lightninglabs/loop/utils"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/client"
clientrpc "github.com/lightninglabs/nautilus/cmd/swapd/rpc"
"github.com/lightninglabs/loop/client"
clientrpc "github.com/lightninglabs/loop/cmd/swapd/rpc"
)
const completedSwapsCount = 5

View file

@ -4,8 +4,8 @@ import (
"os"
"path/filepath"
"github.com/lightninglabs/nautilus/client"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/loop/client"
"github.com/lightninglabs/loop/lndclient"
"github.com/urfave/cli"
)

View file

@ -4,7 +4,7 @@ import (
"fmt"
"strconv"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/utils"
"github.com/urfave/cli"
)

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/lightninglabs/nautilus
module github.com/lightninglabs/loop
require (
github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d

View file

@ -7,7 +7,7 @@ import (
"github.com/btcsuite/btcd/chaincfg/chainhash"
"github.com/btcsuite/btcd/wire"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/utils"
"github.com/lightningnetwork/lnd/chainntnfs"
"github.com/lightningnetwork/lnd/lnrpc/chainrpc"
"google.golang.org/grpc"

View file

@ -4,7 +4,7 @@ import (
"context"
"errors"
"fmt"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/utils"
"io/ioutil"
"path/filepath"
"time"

View file

@ -4,7 +4,7 @@ import (
"context"
"github.com/btcsuite/btcd/wire"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/utils"
"github.com/lightningnetwork/lnd/input"
"github.com/lightningnetwork/lnd/lnrpc/signrpc"
"google.golang.org/grpc"

View file

@ -6,7 +6,7 @@ import (
"github.com/btcsuite/btcd/btcec"
"github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/utils"
"github.com/lightningnetwork/lnd/keychain"
"github.com/lightningnetwork/lnd/lnrpc/signrpc"
"github.com/lightningnetwork/lnd/lnrpc/walletrpc"

View file

@ -1,7 +1,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: server.proto
package rpc // import "github.com/lightninglabs/nautilus/rpc"
package rpc // import "github.com/lightninglabs/loop/rpc"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
@ -37,7 +37,7 @@ func (m *ServerUnchargeSwapRequest) Reset() { *m = ServerUnchargeSwapReq
func (m *ServerUnchargeSwapRequest) String() string { return proto.CompactTextString(m) }
func (*ServerUnchargeSwapRequest) ProtoMessage() {}
func (*ServerUnchargeSwapRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_server_a93cbdd892155ac8, []int{0}
return fileDescriptor_server_1e67d8b2f65fb149, []int{0}
}
func (m *ServerUnchargeSwapRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ServerUnchargeSwapRequest.Unmarshal(m, b)
@ -92,7 +92,7 @@ func (m *ServerUnchargeSwapResponse) Reset() { *m = ServerUnchargeSwapRe
func (m *ServerUnchargeSwapResponse) String() string { return proto.CompactTextString(m) }
func (*ServerUnchargeSwapResponse) ProtoMessage() {}
func (*ServerUnchargeSwapResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_server_a93cbdd892155ac8, []int{1}
return fileDescriptor_server_1e67d8b2f65fb149, []int{1}
}
func (m *ServerUnchargeSwapResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ServerUnchargeSwapResponse.Unmarshal(m, b)
@ -150,7 +150,7 @@ func (m *ServerUnchargeQuoteRequest) Reset() { *m = ServerUnchargeQuoteR
func (m *ServerUnchargeQuoteRequest) String() string { return proto.CompactTextString(m) }
func (*ServerUnchargeQuoteRequest) ProtoMessage() {}
func (*ServerUnchargeQuoteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_server_a93cbdd892155ac8, []int{2}
return fileDescriptor_server_1e67d8b2f65fb149, []int{2}
}
func (m *ServerUnchargeQuoteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ServerUnchargeQuoteRequest.Unmarshal(m, b)
@ -187,7 +187,7 @@ func (m *ServerUnchargeQuoteResponse) Reset() { *m = ServerUnchargeQuote
func (m *ServerUnchargeQuoteResponse) String() string { return proto.CompactTextString(m) }
func (*ServerUnchargeQuoteResponse) ProtoMessage() {}
func (*ServerUnchargeQuoteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_server_a93cbdd892155ac8, []int{3}
return fileDescriptor_server_1e67d8b2f65fb149, []int{3}
}
func (m *ServerUnchargeQuoteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ServerUnchargeQuoteResponse.Unmarshal(m, b)
@ -368,38 +368,38 @@ var _SwapServer_serviceDesc = grpc.ServiceDesc{
Metadata: "server.proto",
}
func init() { proto.RegisterFile("server.proto", fileDescriptor_server_a93cbdd892155ac8) }
func init() { proto.RegisterFile("server.proto", fileDescriptor_server_1e67d8b2f65fb149) }
var fileDescriptor_server_a93cbdd892155ac8 = []byte{
// 471 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x93, 0xc1, 0x8e, 0xd3, 0x30,
0x10, 0x86, 0x95, 0xb6, 0x5b, 0xe8, 0x6c, 0x4b, 0x21, 0x07, 0x14, 0xba, 0xbb, 0x50, 0x2a, 0x2d,
0x54, 0x1c, 0x1a, 0x09, 0x9e, 0x60, 0x57, 0x2b, 0x04, 0x42, 0x42, 0x90, 0x15, 0x17, 0x2e, 0xd1,
0x34, 0x1d, 0x12, 0x8b, 0xc4, 0x36, 0xb6, 0xd3, 0x36, 0x0f, 0x83, 0x78, 0x09, 0x1e, 0x10, 0xd9,
0xce, 0x42, 0x8b, 0xda, 0x5b, 0xf2, 0xcf, 0xe7, 0x99, 0x7f, 0x7e, 0x27, 0x30, 0xd4, 0xa4, 0xd6,
0xa4, 0x16, 0x52, 0x09, 0x23, 0xc2, 0xae, 0x92, 0xd9, 0xe4, 0x3c, 0x17, 0x22, 0x2f, 0x29, 0x46,
0xc9, 0x62, 0xe4, 0x5c, 0x18, 0x34, 0x4c, 0x70, 0xed, 0x91, 0x59, 0x05, 0x4f, 0x6e, 0xdd, 0x91,
0x2f, 0x3c, 0x2b, 0x50, 0xe5, 0x74, 0xbb, 0x41, 0x99, 0xd0, 0x8f, 0x9a, 0xb4, 0x09, 0x9f, 0xc3,
0x50, 0x51, 0x46, 0x6c, 0x4d, 0x2a, 0xfd, 0x4e, 0x4d, 0x14, 0x4c, 0x83, 0xf9, 0x30, 0x39, 0xbd,
0xd3, 0x3e, 0x50, 0x13, 0x9e, 0xc1, 0x40, 0x6f, 0x50, 0xa6, 0x05, 0xea, 0x22, 0xea, 0xb8, 0xfa,
0x7d, 0x2b, 0xbc, 0x43, 0x5d, 0x84, 0x0f, 0xa1, 0x8b, 0x95, 0x89, 0xba, 0xd3, 0x60, 0xde, 0x4b,
0xec, 0xe3, 0xec, 0x67, 0x00, 0x93, 0x43, 0xf3, 0xb4, 0x14, 0x5c, 0x93, 0x1d, 0xe8, 0xba, 0x31,
0xbe, 0x16, 0x2c, 0x23, 0x37, 0x70, 0x90, 0x9c, 0x5a, 0xed, 0xbd, 0x97, 0xc2, 0x4b, 0x78, 0x20,
0x15, 0x49, 0x6c, 0xfe, 0x42, 0x1d, 0x07, 0x8d, 0xbc, 0x7a, 0x87, 0x5d, 0x00, 0x68, 0xe2, 0xab,
var fileDescriptor_server_1e67d8b2f65fb149 = []byte{
// 468 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x93, 0xcf, 0x8e, 0xd3, 0x30,
0x10, 0xc6, 0x95, 0xb6, 0x5b, 0xe8, 0x6c, 0x4b, 0x21, 0x07, 0x14, 0xba, 0xbb, 0xd0, 0x0d, 0x02,
0x55, 0x1c, 0x1a, 0x09, 0x9e, 0x60, 0x57, 0x2b, 0x04, 0x42, 0x42, 0x90, 0x15, 0x17, 0x2e, 0xd1,
0x34, 0x1d, 0x12, 0x8b, 0xc4, 0x36, 0xb6, 0xfb, 0x27, 0x0f, 0x83, 0x78, 0x09, 0x1e, 0x10, 0xd9,
0xce, 0x42, 0x8b, 0xda, 0x5b, 0xf2, 0xcd, 0xcf, 0x33, 0xdf, 0x7c, 0x4e, 0x60, 0xa8, 0x49, 0xad,
0x49, 0xcd, 0xa5, 0x12, 0x46, 0x84, 0x5d, 0x25, 0xf3, 0xc9, 0x79, 0x21, 0x44, 0x51, 0x51, 0x82,
0x92, 0x25, 0xc8, 0xb9, 0x30, 0x68, 0x98, 0xe0, 0xda, 0x23, 0x71, 0x0d, 0x4f, 0x6e, 0xdd, 0x91,
0x2f, 0x3c, 0x2f, 0x51, 0x15, 0x74, 0xbb, 0x41, 0x99, 0xd2, 0x8f, 0x15, 0x69, 0x13, 0x5e, 0xc2,
0x50, 0x51, 0x4e, 0x6c, 0x4d, 0x2a, 0xfb, 0x4e, 0x4d, 0x14, 0x4c, 0x83, 0xd9, 0x30, 0x3d, 0xbd,
0xd3, 0x3e, 0x50, 0x13, 0x9e, 0xc1, 0x40, 0x6f, 0x50, 0x66, 0x25, 0xea, 0x32, 0xea, 0xb8, 0xfa,
0x7d, 0x2b, 0xbc, 0x43, 0x5d, 0x86, 0x0f, 0xa1, 0x8b, 0xb5, 0x89, 0xba, 0xd3, 0x60, 0xd6, 0x4b,
0xed, 0x63, 0xfc, 0x33, 0x80, 0xc9, 0xa1, 0x79, 0x5a, 0x0a, 0xae, 0xc9, 0x0e, 0x74, 0xdd, 0x18,
0x5f, 0x0b, 0x96, 0x93, 0x1b, 0x38, 0x48, 0x4f, 0xad, 0xf6, 0xde, 0x4b, 0xe1, 0x0b, 0x78, 0x20,
0x15, 0x49, 0x6c, 0xfe, 0x42, 0x1d, 0x07, 0x8d, 0xbc, 0x7a, 0x87, 0x5d, 0x00, 0x68, 0xe2, 0xcb,
0xd6, 0x78, 0xd7, 0x19, 0x1b, 0x78, 0xc5, 0xda, 0x7e, 0x0c, 0x7d, 0xda, 0x4a, 0xa6, 0x9a, 0xa8,
0x37, 0x0d, 0xe6, 0x27, 0x49, 0xfb, 0x36, 0x3b, 0xff, 0xdf, 0xde, 0xe7, 0x5a, 0x18, 0x6a, 0xf3,
0x98, 0xfd, 0xea, 0xc0, 0xd9, 0xc1, 0x72, 0x6b, 0xff, 0x15, 0x3c, 0x72, 0xf6, 0x25, 0x36, 0x15,
0x71, 0x93, 0xae, 0x48, 0x9b, 0x76, 0x87, 0xb1, 0x2d, 0x7c, 0xf2, 0xfa, 0x8d, 0xcd, 0x76, 0x06,
0x23, 0xc7, 0x7e, 0x23, 0x4a, 0x97, 0xa8, 0xfd, 0x1a, 0x5d, 0xbf, 0xeb, 0x5b, 0xa2, 0x6b, 0xd4,
0xb4, 0xc7, 0x28, 0x34, 0xe4, 0xf6, 0xf8, 0xc7, 0x24, 0x68, 0xdc, 0xa2, 0x6d, 0x1e, 0x36, 0xea,
0x9e, 0x8b, 0x7a, 0xe0, 0x95, 0xab, 0xca, 0x84, 0x2f, 0x60, 0x5c, 0x31, 0x9e, 0xba, 0x36, 0x58,
0x89, 0x9a, 0x9b, 0xe8, 0xc4, 0x31, 0xa3, 0x8a, 0x71, 0x9b, 0xfd, 0x95, 0x13, 0x1d, 0x87, 0xdb,
0x3d, 0xae, 0xdf, 0x72, 0xb8, 0xdd, 0xe1, 0x2e, 0x00, 0xb2, 0xd2, 0xac, 0xd3, 0x15, 0x95, 0x06,
0xa3, 0x7b, 0x2e, 0xbc, 0x81, 0x55, 0x6e, 0xac, 0xf0, 0xfa, 0x77, 0x00, 0x60, 0x69, 0x9f, 0x52,
0x98, 0xc0, 0xf8, 0x23, 0x6d, 0x76, 0xaf, 0x3a, 0x7c, 0xba, 0x50, 0x32, 0x5b, 0x1c, 0xfd, 0xe6,
0x26, 0xcf, 0x8e, 0xd6, 0xdb, 0x90, 0x13, 0x18, 0xed, 0xa5, 0x1f, 0x1e, 0x3a, 0xb1, 0x7b, 0x6d,
0x93, 0xe9, 0x71, 0xc0, 0xf7, 0xbc, 0x7e, 0xf9, 0xf5, 0x32, 0x67, 0xa6, 0xa8, 0x97, 0x8b, 0x4c,
0x54, 0x71, 0xc9, 0xf2, 0xc2, 0x70, 0xc6, 0xf3, 0x12, 0x97, 0x3a, 0xe6, 0x58, 0x1b, 0x56, 0xd6,
0x3a, 0x56, 0x32, 0x5b, 0xf6, 0xdd, 0x5f, 0xf3, 0xe6, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xeb,
0xb5, 0x41, 0x9b, 0x68, 0x03, 0x00, 0x00,
0x37, 0x0d, 0x66, 0x27, 0x69, 0xfb, 0x16, 0x9f, 0xff, 0x6f, 0xef, 0xf3, 0x4a, 0x18, 0x6a, 0xf3,
0x88, 0x7f, 0x75, 0xe0, 0xec, 0x60, 0xb9, 0xb5, 0xff, 0x0a, 0x1e, 0x39, 0xfb, 0x12, 0x9b, 0x9a,
0xb8, 0xc9, 0x96, 0xa4, 0x4d, 0xbb, 0xc3, 0xd8, 0x16, 0x3e, 0x79, 0xfd, 0xc6, 0x66, 0x1b, 0xc3,
0xc8, 0xb1, 0xdf, 0x88, 0xb2, 0x05, 0x6a, 0xbf, 0x46, 0xd7, 0xef, 0xfa, 0x96, 0xe8, 0x1a, 0x35,
0xed, 0x31, 0x0a, 0x0d, 0xb9, 0x3d, 0xfe, 0x31, 0x29, 0x1a, 0xb7, 0x68, 0x9b, 0x87, 0x8d, 0xba,
0xe7, 0xa2, 0x1e, 0x78, 0xe5, 0xaa, 0x36, 0xe1, 0x4b, 0x18, 0xd7, 0x8c, 0x67, 0xae, 0x0d, 0xd6,
0x62, 0xc5, 0x4d, 0x74, 0xe2, 0x98, 0x51, 0xcd, 0xb8, 0xcd, 0xfe, 0xca, 0x89, 0x8e, 0xc3, 0xed,
0x1e, 0xd7, 0x6f, 0x39, 0xdc, 0xee, 0x70, 0x17, 0x00, 0x79, 0x65, 0xd6, 0xd9, 0x92, 0x2a, 0x83,
0xd1, 0x3d, 0x17, 0xde, 0xc0, 0x2a, 0x37, 0x56, 0x78, 0xfd, 0x3b, 0x00, 0xb0, 0xb4, 0x4f, 0x29,
0x4c, 0x61, 0xfc, 0x91, 0x36, 0xbb, 0x57, 0x1d, 0x3e, 0x9d, 0x2b, 0x99, 0xcf, 0x8f, 0x7e, 0x73,
0x93, 0x67, 0x47, 0xeb, 0x6d, 0xc8, 0x29, 0x8c, 0xf6, 0xd2, 0x0f, 0x0f, 0x9d, 0xd8, 0xbd, 0xb6,
0xc9, 0xf4, 0x38, 0xe0, 0x7b, 0x5e, 0x3f, 0xff, 0x7a, 0x59, 0x30, 0x53, 0xae, 0x16, 0xf3, 0x5c,
0xd4, 0x49, 0xc5, 0x8a, 0xd2, 0x70, 0xc6, 0x8b, 0x0a, 0x17, 0x3a, 0xa9, 0x84, 0x90, 0x89, 0x92,
0xf9, 0xa2, 0xef, 0xfe, 0x98, 0x37, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x34, 0xc9, 0xa8, 0xbf,
0x64, 0x03, 0x00, 0x00,
}

View file

@ -4,7 +4,7 @@ import "google/api/annotations.proto";
package rpc;
option go_package = "github.com/lightninglabs/nautilus/rpc";
option go_package = "github.com/lightninglabs/loop/rpc";
service SwapServer {
rpc NewUnchargeSwap(ServerUnchargeSwapRequest) returns (ServerUnchargeSwapResponse);

View file

@ -8,8 +8,8 @@ import (
"github.com/btcsuite/btcd/txscript"
"github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/lndclient"
"github.com/lightninglabs/loop/utils"
"github.com/lightningnetwork/lnd/input"
"github.com/lightningnetwork/lnd/keychain"
)

View file

@ -8,8 +8,8 @@ import (
"github.com/btcsuite/btcd/btcec"
"github.com/btcsuite/btcd/chaincfg"
"github.com/btcsuite/btcutil"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/nautilus/utils"
"github.com/lightninglabs/loop/lndclient"
"github.com/lightninglabs/loop/utils"
"github.com/lightningnetwork/lnd/lnrpc/invoicesrpc"
"github.com/lightningnetwork/lnd/lntypes"
"github.com/lightningnetwork/lnd/lnwire"

View file

@ -10,7 +10,7 @@ import (
"github.com/lightningnetwork/lnd/zpay32"
"github.com/btcsuite/btcd/wire"
"github.com/lightninglabs/nautilus/lndclient"
"github.com/lightninglabs/loop/lndclient"
"github.com/lightningnetwork/lnd/chainntnfs"
"github.com/lightningnetwork/lnd/channeldb"
)