diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-06-20 20:32:33 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-06-20 20:32:33 +0800 |
commit | 9c69c051ba010e2323d665d2ef273773f9dd7aa3 (patch) | |
tree | e0d705729778ad60b70c6b3de9d0c3d22f9a0fa7 /tests/helper/common.go | |
parent | 53e042f0c47242afa3e13cfebb35becdacdc69c0 (diff) | |
parent | d1e589289c56140144241a245e1756dbdc7280a0 (diff) | |
download | dexon-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar dexon-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar.gz dexon-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar.bz2 dexon-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar.lz dexon-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar.xz dexon-9c69c051ba010e2323d665d2ef273773f9dd7aa3.tar.zst dexon-9c69c051ba010e2323d665d2ef273773f9dd7aa3.zip |
Merge pull request #1236 from tgerring/ethtest
ethtest improvements
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) -} |