diff --git a/cmds.go b/cmds.go index 04ce4005..5e01786a 100644 --- a/cmds.go +++ b/cmds.go @@ -7,6 +7,7 @@ package btcws import ( "encoding/json" "errors" + "github.com/conformal/btcdb" "github.com/conformal/btcjson" "github.com/conformal/btcwire" diff --git a/cmds_test.go b/cmds_test.go index db4201f7..ea4d607f 100644 --- a/cmds_test.go +++ b/cmds_test.go @@ -6,11 +6,12 @@ package btcws import ( + "reflect" + "testing" + "github.com/conformal/btcdb" "github.com/conformal/btcjson" "github.com/davecgh/go-spew/spew" - "reflect" - "testing" ) var cmdtests = []struct { diff --git a/notifications.go b/notifications.go index 7565fdbb..5b8bc655 100644 --- a/notifications.go +++ b/notifications.go @@ -7,6 +7,7 @@ package btcws import ( "encoding/json" "errors" + "github.com/conformal/btcjson" ) diff --git a/notifications_test.go b/notifications_test.go index 05d407b1..22ca40fd 100644 --- a/notifications_test.go +++ b/notifications_test.go @@ -5,11 +5,12 @@ package btcws_test import ( + "reflect" + "testing" + "github.com/conformal/btcjson" "github.com/conformal/btcws" "github.com/davecgh/go-spew/spew" - "reflect" - "testing" ) var ntfntests = []struct {