diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-29 23:06:54 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-29 23:06:54 +0800 |
commit | 5e50b50dc379ed1db48912538034414ff94f6531 (patch) | |
tree | 21eb27eeeb247af376cb0874135464921a199312 /ethutil | |
parent | 772e7e8c8df066a64726b23bde84b6025c5af318 (diff) | |
download | dexon-5e50b50dc379ed1db48912538034414ff94f6531.tar.gz dexon-5e50b50dc379ed1db48912538034414ff94f6531.tar.zst dexon-5e50b50dc379ed1db48912538034414ff94f6531.zip |
no strconv import needed
Diffstat (limited to 'ethutil')
-rw-r--r-- | ethutil/slice.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ethutil/slice.go b/ethutil/slice.go index 67f43705d..3cedcb189 100644 --- a/ethutil/slice.go +++ b/ethutil/slice.go @@ -1,8 +1,6 @@ package ethutil -import ( - "strconv" -) +import () // Helper function for comparing slices func CompareIntSlice(a, b []int) bool { |