diff options
Diffstat (limited to 'trie/encoding.go')
-rw-r--r-- | trie/encoding.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trie/encoding.go b/trie/encoding.go index 4906bc90b..5c42c556f 100644 --- a/trie/encoding.go +++ b/trie/encoding.go @@ -49,7 +49,7 @@ func CompactDecode(str string) []byte { func CompactHexDecode(str string) []byte { base := "0123456789abcdef" - hexSlice := make([]byte, 0) + var hexSlice []byte enc := hex.EncodeToString([]byte(str)) for _, v := range enc { @@ -61,7 +61,7 @@ func CompactHexDecode(str string) []byte { } func DecodeCompact(key []byte) string { - base := "0123456789abcdef" + const base = "0123456789abcdef" var str string for _, v := range key { |