diff --git a/service/src/main/kotlin/io/provenance/explorer/domain/entities/Blocks.kt b/service/src/main/kotlin/io/provenance/explorer/domain/entities/Blocks.kt index ec26a14c..01512d59 100644 --- a/service/src/main/kotlin/io/provenance/explorer/domain/entities/Blocks.kt +++ b/service/src/main/kotlin/io/provenance/explorer/domain/entities/Blocks.kt @@ -311,7 +311,7 @@ class MissedBlocksRecord(id: EntityID) : IntEntity(id) { val endTime = System.currentTimeMillis() val duration = endTime - startTime - // TODO: remove warning if problem is fixed after adding limit to queries + // TODO: remove warning if problem is fixed after adding limit to queries See: https://github.com/provenance-io/explorer-service/issues/546 if (duration > 1000) { logger().warn("Processing calculateMissedAndInsert took ${duration}ms for height: $height and valconsAddr: $valconsAddr") }