diff --git a/pkg/core/blockchain.go b/pkg/core/blockchain.go index 40667c3d4..5882da12a 100644 --- a/pkg/core/blockchain.go +++ b/pkg/core/blockchain.go @@ -468,6 +468,8 @@ func (bc *Blockchain) init() error { } bc.blockHeight = bHeight bc.persistedHeight = bHeight + + bc.log.Debug("initializing caches", zap.Uint32("blockHeight", bHeight)) if err = bc.stateRoot.Init(bHeight); err != nil { return fmt.Errorf("can't init MPT at height %d: %w", bHeight, err) }