Apply suggestion from @jwasinger

This commit is contained in:
jwasinger 2026-06-22 09:22:41 -04:00 committed by GitHub
parent 42dc1a7003
commit 35d304f9d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,7 +116,7 @@ type Trie interface {
// database, a trie.MissingNodeError is returned.
UpdateStorage(addr common.Address, key, value []byte) error
// UpdateStorageBatch attempts to update a list storages in the batch manner.
// UpdateStorageBatch attempts to update a list of storages in the batch manner.
UpdateStorageBatch(_ common.Address, keys [][]byte, values [][]byte) error
// DeleteAccount abstracts an account deletion from the trie.