From 35d304f9d3cca2b9ed2c8803b75679b6aec174cc Mon Sep 17 00:00:00 2001 From: jwasinger Date: Mon, 22 Jun 2026 09:22:41 -0400 Subject: [PATCH] Apply suggestion from @jwasinger --- core/state/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/database.go b/core/state/database.go index 652d0316ad..1001a4b4cf 100644 --- a/core/state/database.go +++ b/core/state/database.go @@ -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.