Skip to content

Commit

Permalink
Fix uppercase
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Whitehead <[email protected]>
  • Loading branch information
matthew1001 committed Jun 10, 2024
1 parent 8cfe615 commit 9fe30bf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Optional;
import java.util.OptionalLong;
Expand Down Expand Up @@ -839,7 +840,7 @@ private PivotBlockSelector createPivotSelector(
if (genesisConfigOptions.isQbft() || genesisConfigOptions.isIbft2()) {
LOG.info(
"{} is configured, creating initial sync for BFT",
genesisConfigOptions.getConsensusEngine().toUpperCase());
genesisConfigOptions.getConsensusEngine().toUpperCase(Locale.ROOT));
return new BFTPivotSelectorFromPeers(
ethContext, syncConfig, syncState, metricsSystem, protocolContext, nodeKey);
} else if (genesisConfigOptions.getTerminalTotalDifficulty().isPresent()) {
Expand Down

0 comments on commit 9fe30bf

Please sign in to comment.