From d5d7d36e00f978ddb3ff339d8e5a3a2e4b1a3263 Mon Sep 17 00:00:00 2001 From: jsvisa Date: Tue, 5 Aug 2025 17:43:14 +0800 Subject: [PATCH] misspell Signed-off-by: jsvisa --- triedb/pathdb/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/triedb/pathdb/database.go b/triedb/pathdb/database.go index 82cb7e52ff..e6eb4182b4 100644 --- a/triedb/pathdb/database.go +++ b/triedb/pathdb/database.go @@ -339,7 +339,7 @@ func (db *Database) repairHistory() error { log.Warn("Truncated extra state histories", "number", pruned) if meta := loadIndexMetadata(db.diskdb); meta != nil { // Reset the state history index metadata to current state id - // if it's out of boundry. + // if it's out of boundary. if old := meta.Last; old > id { log.Warn("Reset state history index metadata after truncation", "oldID", old, "newID", id) storeIndexMetadata(db.diskdb, id)