small fix

This commit is contained in:
shantichanal 2025-08-19 19:56:42 +02:00 committed by Gary Rong
parent f986915332
commit 23d24f3ce3

View file

@ -45,6 +45,10 @@ func NewTransitionTree(base *SecureTrie, overlay *VerkleTrie, st bool) *Transiti
}
}
func (t *TransitionTrie) Owner() common.Hash {
return t.overlay.Owner()
}
// Base returns the base trie.
func (t *TransitionTrie) Base() *SecureTrie {
return t.base