diff options
author | Martin Holst Swende <martin@swende.se> | 2019-02-16 23:16:12 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2019-02-19 16:59:57 +0800 |
commit | a458153098d6f66ee0c6f990f31b3646ad171bbb (patch) | |
tree | 427e794bdb4c258fa8f8422ecbbcf3a83d44b536 /trie/encoding.go | |
parent | fe5258b41ea2e363aea1494dcf52754fea9b42db (diff) | |
download | dexon-a458153098d6f66ee0c6f990f31b3646ad171bbb.tar dexon-a458153098d6f66ee0c6f990f31b3646ad171bbb.tar.gz dexon-a458153098d6f66ee0c6f990f31b3646ad171bbb.tar.bz2 dexon-a458153098d6f66ee0c6f990f31b3646ad171bbb.tar.lz dexon-a458153098d6f66ee0c6f990f31b3646ad171bbb.tar.xz dexon-a458153098d6f66ee0c6f990f31b3646ad171bbb.tar.zst dexon-a458153098d6f66ee0c6f990f31b3646ad171bbb.zip |
trie: fix error in node decoding (#19111)
Diffstat (limited to 'trie/encoding.go')
-rw-r--r-- | trie/encoding.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/trie/encoding.go b/trie/encoding.go index 5f120de63..1955a3e66 100644 --- a/trie/encoding.go +++ b/trie/encoding.go @@ -52,6 +52,9 @@ func hexToCompact(hex []byte) []byte { } func compactToHex(compact []byte) []byte { + if len(compact) == 0 { + return compact + } base := keybytesToHex(compact) // delete terminator flag if base[0] < 2 { |