From 10643379a9831c821de72f55e8abee3f9ed574ab Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Fri, 16 Jan 2015 23:37:26 -0600 Subject: [PATCH] Update btcws import paths to new location. --- rpcserver.go | 2 +- rpcwebsocket.go | 2 +- util/btcctl/btcctl.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rpcserver.go b/rpcserver.go index 41212b00..288d92db 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -33,10 +33,10 @@ import ( "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwire" + "github.com/btcsuite/btcws" "github.com/btcsuite/fastsha256" "github.com/btcsuite/websocket" "github.com/conformal/btcjson" - "github.com/conformal/btcws" ) const ( diff --git a/rpcwebsocket.go b/rpcwebsocket.go index cfcebc32..394b60cf 100644 --- a/rpcwebsocket.go +++ b/rpcwebsocket.go @@ -23,10 +23,10 @@ import ( "github.com/btcsuite/btcscript" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcwire" + "github.com/btcsuite/btcws" "github.com/btcsuite/fastsha256" "github.com/btcsuite/websocket" "github.com/conformal/btcjson" - "github.com/conformal/btcws" ) const ( diff --git a/util/btcctl/btcctl.go b/util/btcctl/btcctl.go index 8d9a8df0..539a4ba6 100644 --- a/util/btcctl/btcctl.go +++ b/util/btcctl/btcctl.go @@ -11,9 +11,9 @@ import ( "strconv" "github.com/btcsuite/btcutil" + "github.com/btcsuite/btcws" flags "github.com/btcsuite/go-flags" "github.com/conformal/btcjson" - "github.com/conformal/btcws" "github.com/davecgh/go-spew/spew" )