diff --git a/chain.go b/chain.go index 0638c6e72..95c0586f6 100644 --- a/chain.go +++ b/chain.go @@ -9,8 +9,8 @@ import ( "encoding/hex" "encoding/json" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcjson" "github.com/btcsuite/btcutil" ) diff --git a/extensions.go b/extensions.go index 033ec914a..4a65d27be 100644 --- a/extensions.go +++ b/extensions.go @@ -9,8 +9,8 @@ import ( "encoding/json" "fmt" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcjson" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcws" ) diff --git a/infrastructure.go b/infrastructure.go index d14b4dc2b..1af40a0b3 100644 --- a/infrastructure.go +++ b/infrastructure.go @@ -20,7 +20,7 @@ import ( "sync/atomic" "time" - "github.com/btcsuite/btcjson" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcws" "github.com/btcsuite/go-socks/socks" "github.com/btcsuite/websocket" diff --git a/mining.go b/mining.go index c201e2ab3..ecba727b6 100644 --- a/mining.go +++ b/mining.go @@ -9,7 +9,7 @@ import ( "encoding/json" "errors" - "github.com/btcsuite/btcjson" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcutil" ) diff --git a/net.go b/net.go index ace15c885..ecf696130 100644 --- a/net.go +++ b/net.go @@ -7,7 +7,7 @@ package btcrpcclient import ( "encoding/json" - "github.com/btcsuite/btcjson" + "github.com/btcsuite/btcd/btcjson" ) // AddNodeCommand enumerates the available commands that the AddNode function diff --git a/notify.go b/notify.go index 557cb76b0..65608e5cd 100644 --- a/notify.go +++ b/notify.go @@ -13,8 +13,8 @@ import ( "sync" "time" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcjson" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcws" ) diff --git a/rawrequest.go b/rawrequest.go index d18f10b44..44a557e41 100644 --- a/rawrequest.go +++ b/rawrequest.go @@ -8,7 +8,7 @@ import ( "encoding/json" "errors" - "github.com/btcsuite/btcjson" + "github.com/btcsuite/btcd/btcjson" ) // rawRequest satisifies the btcjson.Cmd interface for btcjson raw commands. diff --git a/rawtransactions.go b/rawtransactions.go index 5dec6299b..e75f0bb48 100644 --- a/rawtransactions.go +++ b/rawtransactions.go @@ -9,8 +9,8 @@ import ( "encoding/hex" "encoding/json" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcjson" "github.com/btcsuite/btcutil" ) diff --git a/wallet.go b/wallet.go index fead4211e..08bd0f12b 100644 --- a/wallet.go +++ b/wallet.go @@ -8,9 +8,9 @@ import ( "encoding/json" "strconv" + "github.com/btcsuite/btcd/btcjson" "github.com/btcsuite/btcd/chaincfg" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btcjson" "github.com/btcsuite/btcutil" "github.com/btcsuite/btcws" )