diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-16 10:21:55 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-16 10:21:55 +0800 |
commit | ddca18638f1a81e730001ff7fda4581379094aa4 (patch) | |
tree | d6a9f95b6a04991a95ed3ea1047e641a70b7ecb1 /trie | |
parent | 3588c4a9feb4204419d9c0fa2a4c9089120221b7 (diff) | |
download | dexon-ddca18638f1a81e730001ff7fda4581379094aa4.tar.gz dexon-ddca18638f1a81e730001ff7fda4581379094aa4.tar.zst dexon-ddca18638f1a81e730001ff7fda4581379094aa4.zip |
update imports order per goimports
Diffstat (limited to 'trie')
-rw-r--r-- | trie/main_test.go | 3 | ||||
-rw-r--r-- | trie/trie_test.go | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/trie/main_test.go b/trie/main_test.go index f131b83de..f6f64c06f 100644 --- a/trie/main_test.go +++ b/trie/main_test.go @@ -1,8 +1,9 @@ package trie import ( - checker "gopkg.in/check.v1" "testing" + + checker "gopkg.in/check.v1" ) func Test(t *testing.T) { checker.TestingT(t) } diff --git a/trie/trie_test.go b/trie/trie_test.go index 43cd6c145..3d135ffa2 100644 --- a/trie/trie_test.go +++ b/trie/trie_test.go @@ -4,12 +4,13 @@ import ( "encoding/hex" "encoding/json" "fmt" - checker "gopkg.in/check.v1" "io/ioutil" "math/rand" "net/http" "time" + checker "gopkg.in/check.v1" + "github.com/ethereum/go-ethereum/ethutil" ) |