aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)
}