Update btcws import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 23:40:19 -06:00
parent 7276c1ca7d
commit 3fc3ecc908
2 changed files with 2 additions and 2 deletions

View file

@ -25,9 +25,9 @@ import (
"github.com/btcsuite/btcrpcclient" "github.com/btcsuite/btcrpcclient"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/btcsuite/btcws"
"github.com/conformal/btcwallet/keystore" "github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore" "github.com/conformal/btcwallet/txstore"
"github.com/conformal/btcws"
) )
type Client struct { type Client struct {

View file

@ -42,12 +42,12 @@ import (
"github.com/btcsuite/btcscript" "github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/btcsuite/btcws"
"github.com/btcsuite/websocket" "github.com/btcsuite/websocket"
"github.com/conformal/btcjson" "github.com/conformal/btcjson"
"github.com/conformal/btcwallet/chain" "github.com/conformal/btcwallet/chain"
"github.com/conformal/btcwallet/keystore" "github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore" "github.com/conformal/btcwallet/txstore"
"github.com/conformal/btcws"
) )
// Error types to simplify the reporting of specific categories of // Error types to simplify the reporting of specific categories of