diff --git a/README.md b/README.md index c537d113..230b6dc2 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ websocket.JSON.Send(btcdWSConn, cmd) // Server Side import ( "golang.org/x/net/websocket" - "github.com/btcsuite/btcjson" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcws" ) diff --git a/cmds.go b/cmds.go index 340bd25c..faa15c9c 100644 --- a/cmds.go +++ b/cmds.go @@ -8,8 +8,8 @@ import ( "encoding/json" "errors" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcjson" ) // Help texts diff --git a/cmds_test.go b/cmds_test.go index ff0ed517..f6c8f173 100644 --- a/cmds_test.go +++ b/cmds_test.go @@ -9,7 +9,7 @@ import ( "reflect" "testing" - "github.com/btcsuite/btcjson" + "github.com/btcsuite/btcd/btcjson" "github.com/davecgh/go-spew/spew" ) diff --git a/notifications.go b/notifications.go index 093f5c6a..d06d5410 100644 --- a/notifications.go +++ b/notifications.go @@ -8,7 +8,7 @@ import ( "encoding/json" "errors" - "github.com/btcsuite/btcjson" + "github.com/btcsuite/btcd/btcjson" ) var ( diff --git a/notifications_test.go b/notifications_test.go index 0e13dda0..a63c458d 100644 --- a/notifications_test.go +++ b/notifications_test.go @@ -8,7 +8,7 @@ import ( "reflect" "testing" - "github.com/btcsuite/btcjson" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcws" "github.com/davecgh/go-spew/spew" )