diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-06-11 01:00:54 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-06-19 04:15:07 +0800 |
commit | 1b26d4f220689dac18d560a4c1ecb3b29d99deb0 (patch) | |
tree | 66bed6c2091770fc58476299691204bb30efb7a5 /tests/helper/common.go | |
parent | e82100367f794856a8807b5fcfe9f0043902a294 (diff) | |
download | dexon-1b26d4f220689dac18d560a4c1ecb3b29d99deb0.tar.gz dexon-1b26d4f220689dac18d560a4c1ecb3b29d99deb0.tar.zst dexon-1b26d4f220689dac18d560a4c1ecb3b29d99deb0.zip |
Flatten helper directory
Diffstat (limited to 'tests/helper/common.go')
-rw-r--r-- | tests/helper/common.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/helper/common.go b/tests/helper/common.go deleted file mode 100644 index 21ea2261f..000000000 --- a/tests/helper/common.go +++ /dev/null @@ -1,11 +0,0 @@ -package helper - -import "github.com/ethereum/go-ethereum/common" - -func FromHex(h string) []byte { - if common.IsHex(h) { - h = h[2:] - } - - return common.Hex2Bytes(h) -} |