From 1acb4b81518f816c7beeff389b35cf26d40efd42 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Wed, 2 Jul 2014 19:44:43 -0500 Subject: [PATCH] goimports -w . --- cmds.go | 1 + cmds_test.go | 5 +++-- notifications.go | 1 + notifications_test.go | 5 +++-- 4 files changed, 8 insertions(+), 4 deletions(-) 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 {