diff options
author | Felix Lange <fjl@twurst.com> | 2015-07-07 11:10:49 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-07-07 20:12:45 +0800 |
commit | 4fb28e0dab912854570c6b6b183004f4b3e7ac05 (patch) | |
tree | a134341db17cf280e4529533c0eb86fca7e542a9 /crypto | |
parent | bdae4fd573dbc163bab3d0e2d1a5c457892037cd (diff) | |
download | dexon-4fb28e0dab912854570c6b6b183004f4b3e7ac05.tar.gz dexon-4fb28e0dab912854570c6b6b183004f4b3e7ac05.tar.zst dexon-4fb28e0dab912854570c6b6b183004f4b3e7ac05.zip |
all: goimports -w
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/randentropy/rand_entropy.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/randentropy/rand_entropy.go b/crypto/randentropy/rand_entropy.go index e7f765af6..4ac12460b 100644 --- a/crypto/randentropy/rand_entropy.go +++ b/crypto/randentropy/rand_entropy.go @@ -18,8 +18,9 @@ package randentropy import ( crand "crypto/rand" - "github.com/ethereum/go-ethereum/crypto/sha3" "io" + + "github.com/ethereum/go-ethereum/crypto/sha3" ) var Reader io.Reader = &randEntropy{} |