aboutsummaryrefslogtreecommitdiffstats
path: root/trie
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-30 06:18:46 +0800
committerobscuren <geffobscura@gmail.com>2015-01-30 06:18:46 +0800
commit705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b (patch)
tree297b1a41a3a43ad20b7b558d3bf57115d27cf5f7 /trie
parent9022f5034f952405d02f89c905104c80f0c13b8f (diff)
downloadgo-tangerine-705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b.tar
go-tangerine-705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b.tar.gz
go-tangerine-705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b.tar.bz2
go-tangerine-705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b.tar.lz
go-tangerine-705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b.tar.xz
go-tangerine-705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b.tar.zst
go-tangerine-705cf6113d5c7cc8cbbbc8201d3c6ea04ae5726b.zip
debug err removed
Diffstat (limited to 'trie')
-rw-r--r--trie/encoding.go2
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)
}