aboutsummaryrefslogtreecommitdiffstats
path: root/trie/trie.go
diff options
context:
space:
mode:
Diffstat (limited to 'trie/trie.go')
-rw-r--r--trie/trie.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/trie/trie.go b/trie/trie.go
index 717296e27..9dfde4529 100644
--- a/trie/trie.go
+++ b/trie/trie.go
@@ -394,8 +394,9 @@ func (t *Trie) resolveHash(n hashNode, prefix, suffix []byte) (node, error) {
return nil, &MissingNodeError{
RootHash: t.originalRoot,
NodeHash: common.BytesToHash(n),
- KeyPrefix: prefix,
- KeySuffix: suffix,
+ Key: compactHexEncode(append(prefix, suffix...)),
+ PrefixLen: len(prefix),
+ SuffixLen: len(suffix),
}
}
dec := mustDecodeNode(n, enc)