Skip to content

Commit

Permalink
backend: fix sentry disable block download
Browse files Browse the repository at this point in the history
  • Loading branch information
taratorio committed Jan 18, 2025
1 parent 8dec5ac commit 7e33843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ func New(ctx context.Context, stack *node.Node, config *ethconfig.Config, logger
}
}

sentryMcDisableBlockDownload := config.PolygonSync || config.PolygonSyncStage
sentryMcDisableBlockDownload := chainConfig.Bor != nil && (config.PolygonSync || config.PolygonSyncStage)
backend.sentriesClient, err = sentry_multi_client.NewMultiClient(
backend.chainDB,
chainConfig,
Expand Down

0 comments on commit 7e33843

Please sign in to comment.