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 ac50f90 commit 23f1c6fCopy full SHA for 23f1c6f
app/services/eth_block_importer.rb
@@ -448,7 +448,9 @@ def validation_stalled?
448
check_range_end = current_position
449
450
# Count ALL missing validations in critical range (includes both gaps and lag)
451
+ ImportProfiler.start("validation_gap_count")
452
gap_count = ValidationResult.validation_gap_count(check_range_start, check_range_end)
453
+ ImportProfiler.stop("validation_gap_count")
454
455
if gap_count >= hard_limit
456
Rails.logger.error "Too many validation gaps: #{gap_count} unvalidated blocks in range #{check_range_start}-#{check_range_end} (limit: #{hard_limit})"
0 commit comments