From 622b03c7dd0300fb65d62ff7dbf306f077c8b269 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Tue, 5 Feb 2019 15:11:14 +0100 Subject: [PATCH] accounts: fix goimport --- accounts/accounts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/accounts.go b/accounts/accounts.go index 6cf50b98d0..b57f282b32 100644 --- a/accounts/accounts.go +++ b/accounts/accounts.go @@ -19,13 +19,13 @@ package accounts import ( "fmt" - "golang.org/x/crypto/sha3" "math/big" ethereum "github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/event" + "golang.org/x/crypto/sha3" ) // Account represents an Ethereum account located at a specific location defined