diff --git a/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/sync/SynchronizerConfiguration.java b/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/sync/SynchronizerConfiguration.java index 43273f7e29..e18590a774 100644 --- a/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/sync/SynchronizerConfiguration.java +++ b/ethereum/eth/src/main/java/org/hyperledger/besu/ethereum/eth/sync/SynchronizerConfiguration.java @@ -147,7 +147,7 @@ public class SynchronizerConfiguration { * The range of block numbers (relative to the current chain head and the best network block) that * are considered appropriate to import as new blocks are announced on the network. * - * @return the range of blocks considered valid to import from the network, relative to the the + * @return the range of blocks considered valid to import from the network, relative to the * current chain head. */ public Range getBlockPropagationRange() { diff --git a/metrics/core/src/main/java/org/hyperledger/besu/metrics/prometheus/MetricsPushGatewayService.java b/metrics/core/src/main/java/org/hyperledger/besu/metrics/prometheus/MetricsPushGatewayService.java index 9f5d81aabe..3134e55cde 100644 --- a/metrics/core/src/main/java/org/hyperledger/besu/metrics/prometheus/MetricsPushGatewayService.java +++ b/metrics/core/src/main/java/org/hyperledger/besu/metrics/prometheus/MetricsPushGatewayService.java @@ -86,7 +86,7 @@ public class MetricsPushGatewayService implements MetricsService { try { pushGateway.delete(config.getPrometheusJob()); } catch (final Exception e) { - LOG.error("Could not clean up results on the Prometheus Push Gateway.", e); + LOG.error("Could not clean up results on the Prometheus Push Gateway.", e); // Do not complete exceptionally, the gateway may be down and failures // here cause the shutdown to loop. Failure is acceptable. }