update imports to github
This commit is contained in:
parent
d47105217b
commit
2815afebb7
2
.gitignore
vendored
2
.gitignore
vendored
@ -24,7 +24,7 @@ _testmain.go
|
||||
*.test
|
||||
*.prof
|
||||
|
||||
plasma
|
||||
lnd
|
||||
|
||||
cmd/cmd
|
||||
**.key
|
||||
|
@ -9,7 +9,7 @@ import (
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
"github.com/btcsuite/btcwallet/chain"
|
||||
"github.com/btcsuite/btcwallet/wtxmgr"
|
||||
"li.lan/labs/plasma/chainntfs"
|
||||
"github.com/lightningnetwork/lnd/chainntfs"
|
||||
)
|
||||
|
||||
// BtcdNotifier...
|
||||
|
@ -13,7 +13,7 @@ import (
|
||||
"github.com/btcsuite/btcutil"
|
||||
"github.com/btcsuite/btcwallet/waddrmgr"
|
||||
"github.com/btcsuite/btcwallet/walletdb"
|
||||
"li.lan/labs/plasma/shachain"
|
||||
"github.com/lightningnetwork/lnd/shachain"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -6,8 +6,8 @@ import (
|
||||
"os"
|
||||
|
||||
"github.com/codegangsta/cli"
|
||||
"github.com/lightningnetwork/lnd/lnrpc"
|
||||
"golang.org/x/net/context"
|
||||
"li.lan/labs/plasma/lnrpc"
|
||||
)
|
||||
|
||||
func printRespJson(resp interface{}) {
|
||||
|
@ -6,7 +6,7 @@ import (
|
||||
"os"
|
||||
|
||||
"github.com/codegangsta/cli"
|
||||
"li.lan/labs/plasma/lnrpc"
|
||||
"github.com/lightningnetwork/lnd/lnrpc"
|
||||
|
||||
"google.golang.org/grpc"
|
||||
)
|
||||
@ -49,7 +49,7 @@ func main() {
|
||||
cli.StringFlag{
|
||||
Name: "rpcserver",
|
||||
Value: "localhost:10000",
|
||||
Usage: "host:port of plasma daemon",
|
||||
Usage: "host:port of ln daemon",
|
||||
},
|
||||
}
|
||||
app.Commands = []cli.Command{
|
||||
|
@ -5,8 +5,8 @@ import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/lightningnetwork/lnd/lnrpc"
|
||||
"google.golang.org/grpc"
|
||||
"li.lan/labs/plasma/lnrpc"
|
||||
)
|
||||
|
||||
// connects via grpc to the ln node. default (hardcoded?) local:10K
|
||||
|
@ -7,9 +7,9 @@ import (
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/lightningnetwork/lnd/lnrpc"
|
||||
"golang.org/x/net/context"
|
||||
"google.golang.org/grpc"
|
||||
"li.lan/labs/plasma/lnrpc"
|
||||
)
|
||||
|
||||
var z lnrpc.LightningClient
|
||||
|
@ -4,12 +4,13 @@ import (
|
||||
"fmt"
|
||||
//"github.com/btcsuite/btcd/btcec"
|
||||
//"atomic"
|
||||
"sync"
|
||||
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
"github.com/btcsuite/btcutil"
|
||||
"li.lan/labs/plasma/channeldb"
|
||||
"li.lan/labs/plasma/lnwire"
|
||||
"li.lan/labs/plasma/shachain"
|
||||
"sync"
|
||||
"github.com/lightningnetwork/lnd/channeldb"
|
||||
"github.com/lightningnetwork/lnd/lnwire"
|
||||
"github.com/lightningnetwork/lnd/shachain"
|
||||
)
|
||||
|
||||
//This is a state machine which allows for simultaneous high-volume
|
||||
|
@ -5,8 +5,8 @@ import (
|
||||
"fmt"
|
||||
"sync"
|
||||
|
||||
"li.lan/labs/plasma/chainntfs"
|
||||
"li.lan/labs/plasma/channeldb"
|
||||
"github.com/lightningnetwork/lnd/chainntfs"
|
||||
"github.com/lightningnetwork/lnd/channeldb"
|
||||
|
||||
"github.com/btcsuite/btcd/btcec"
|
||||
"github.com/btcsuite/btcd/txscript"
|
||||
|
@ -3,7 +3,7 @@ package lnwallet
|
||||
import (
|
||||
"sync"
|
||||
|
||||
"li.lan/labs/plasma/channeldb"
|
||||
"github.com/lightningnetwork/lnd/channeldb"
|
||||
|
||||
"github.com/btcsuite/btcd/btcec"
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
|
@ -12,10 +12,10 @@ import (
|
||||
"sync"
|
||||
"sync/atomic"
|
||||
|
||||
"li.lan/labs/plasma/chainntfs"
|
||||
"li.lan/labs/plasma/chainntfs/btcdnotify"
|
||||
"li.lan/labs/plasma/channeldb"
|
||||
"li.lan/labs/plasma/shachain"
|
||||
"github.com/lightningnetwork/lnd/chainntfs"
|
||||
"github.com/lightningnetwork/lnd/chainntfs/btcdnotify"
|
||||
"github.com/lightningnetwork/lnd/channeldb"
|
||||
"github.com/lightningnetwork/lnd/shachain"
|
||||
|
||||
"github.com/btcsuite/btcd/btcec"
|
||||
"github.com/btcsuite/btcd/chaincfg"
|
||||
|
4
peer.go
4
peer.go
@ -8,8 +8,8 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
"li.lan/labs/plasma/lnwallet"
|
||||
"li.lan/labs/plasma/lnwire"
|
||||
"github.com/lightningnetwork/lnd/lnwallet"
|
||||
"github.com/lightningnetwork/lnd/lnwire"
|
||||
)
|
||||
|
||||
// channelState...
|
||||
|
Loading…
Reference in New Issue
Block a user