diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-30 06:18:46 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-30 06:18:46 +0800 |
commit | 705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b (patch) | |
tree | 297b1a41a3a43ad20b7b558d3bf57115d27cf5f7 /trie | |
parent | 9022f5034f952405d02f89c905104c80f0c13b8f (diff) | |
download | go-tangerine-705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b.tar.gz go-tangerine-705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b.tar.zst go-tangerine-705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b.zip |
debug err removed
Diffstat (limited to 'trie')
-rw-r--r-- | trie/encoding.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trie/encoding.go b/trie/encoding.go index 94ea184c9..5c42c556f 100644 --- a/trie/encoding.go +++ b/trie/encoding.go @@ -70,7 +70,7 @@ func DecodeCompact(key []byte) string { } } - res, err := hex.DecodeString(str) + res, _ := hex.DecodeString(str) return string(res) } |