From 75fc954d9606e8b0ef0b958be2a3494d6faaea64 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Mon, 14 Apr 2025 13:30:06 +0200 Subject: [PATCH] core: fix typo --- core/blockchain.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/blockchain.go b/core/blockchain.go index f28bdea28f..242cadc4ac 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -620,7 +620,7 @@ func (bc *BlockChain) initializeHistoryPruning(latest uint64) error { log.Error("Chain history pruning is not supported for this network", "genesis", bc.genesisBlock.Hash()) return fmt.Errorf("history pruning requested for unknown network") } else if freezerTail != predefinedPoint.BlockNumber { - log.Error("Chain history database is pruned to unkown block", "tail", freezerTail) + log.Error("Chain history database is pruned to unknown block", "tail", freezerTail) return fmt.Errorf("unexpected database tail") } bc.historyPrunePoint.Store(predefinedPoint)