fix linter

This commit is contained in:
Guillaume Ballet 2024-07-25 10:50:53 +02:00 committed by Felix Lange
parent 7649860d76
commit 0d72a4c26b

View file

@ -69,8 +69,8 @@ func NewVerkleTrie(root common.Hash, db database.Database, cache *utils.PointCac
}, nil }, nil
} }
func (trie *VerkleTrie) FlatdbNodeResolver(path []byte) ([]byte, error) { func (t *VerkleTrie) FlatdbNodeResolver(path []byte) ([]byte, error) {
return trie.reader.node(path, common.Hash{}) return t.reader.node(path, common.Hash{})
} }
// GetKey returns the sha3 preimage of a hashed key that was previously used // GetKey returns the sha3 preimage of a hashed key that was previously used