From b8f3da692e464dc815904a9dcdb351559e800671 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 19 Feb 2015 11:54:02 -0600 Subject: [PATCH] Update btcjson path import paths to new location. --- README.md | 2 +- cmds.go | 2 +- cmds_test.go | 2 +- notifications.go | 2 +- notifications_test.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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" )