diff --git a/cmds.go b/cmds.go index 04ce40052..5e01786a4 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 db4201f75..ea4d607fd 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 7565fdbb3..5b8bc6556 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 05d407b1f..22ca40fdc 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 {