From ee1b2c7c867d0e463ddb1c62caf329581292a96a Mon Sep 17 00:00:00 2001 From: Martin HS Date: Mon, 4 Nov 2024 15:08:58 +0100 Subject: [PATCH] triedb/database: minor docstring fix --- triedb/database/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/triedb/database/database.go b/triedb/database/database.go index 4ca366abe1..cd7ec1d931 100644 --- a/triedb/database/database.go +++ b/triedb/database/database.go @@ -60,7 +60,7 @@ type StateReader interface { Storage(accountHash, storageHash common.Hash) ([]byte, error) } -// StateDatabase warps the methods of a backing state store. +// StateDatabase wraps the methods of a backing state store. type StateDatabase interface { // StateReader returns a state reader associated with the specific state. // An error will be returned if the specified state is not available.