We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d89fdb commit 64a3c65Copy full SHA for 64a3c65
eth/handler.go
@@ -197,7 +197,7 @@ func newHandler(config *handlerConfig) (*handler, error) {
197
head := h.chain.CurrentBlock()
198
if head.Number.Uint64() > 0 && h.chain.HasState(head.Root) && (!config.Chain.Config().IsOptimism() || head.Number.Cmp(config.Chain.Config().BedrockBlock) != 0) {
199
// For OP chains, snap sync from bedrock block is allowed.
200
- log.Info("Switch sync mode from snap sync to full sync")
+ log.Info("Switch sync mode from snap sync to full sync", "reason", "snap sync complete")
201
} else {
202
// If snap sync was requested and our database is empty, grant it
203
h.snapSync.Store(true)
0 commit comments