Skip to content

Commit

Permalink
Revert "Add terminal block hash and number to Ropsten genesis file (#…
Browse files Browse the repository at this point in the history
…4026)" (#4093)

This reverts commit 27fc468.

Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
  • Loading branch information
fab-10 authored Jul 13, 2022
1 parent e97ed8d commit b85b39d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -634,19 +634,6 @@ protected List<PeerValidator> createPeerValidators(final ProtocolSchedule protoc
protocolSchedule, metricsSystem, requiredBlock.getKey(), requiredBlock.getValue()));
}

final Optional<Hash> terminalBlockHash = configOptionsSupplier.get().getTerminalBlockHash();
if (terminalBlockHash.isPresent() && !terminalBlockHash.get().equals(Hash.ZERO)) {
final OptionalLong terminalBlockNumber = configOptionsSupplier.get().getTerminalBlockNumber();
if (terminalBlockNumber.isPresent()) {
validators.add(
new RequiredBlocksPeerValidator(
protocolSchedule,
metricsSystem,
terminalBlockNumber.getAsLong(),
terminalBlockHash.get()));
}
}

final CheckpointConfigOptions checkpointConfigOptions =
genesisConfig.getConfigOptions(genesisConfigOverrides).getCheckpointOptions();
if (SyncMode.X_CHECKPOINT.equals(syncConfig.getSyncMode())
Expand Down
4 changes: 2 additions & 2 deletions besu/src/test/java/org/hyperledger/besu/ForkIdsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ public static Collection<Object[]> parameters() {
new ForkId(Bytes.ofUnsignedInt(0x4bc66396L), 7117117L),
new ForkId(Bytes.ofUnsignedInt(0x6727ef90L), 9812189L),
new ForkId(Bytes.ofUnsignedInt(0xa157d377L), 10499401L),
new ForkId(Bytes.ofUnsignedInt(0x7119b6b3L), 12350712L),
new ForkId(Bytes.ofUnsignedInt(0xaae42f33L), 0L))
new ForkId(Bytes.ofUnsignedInt(0x7119b6b3L), 0L),
new ForkId(Bytes.ofUnsignedInt(0x7119b6b3L), 0L))
},
new Object[] {
NetworkName.RINKEBY,
Expand Down
2 changes: 0 additions & 2 deletions config/src/main/resources/ropsten.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
"berlinBlock": 9812189,
"londonBlock": 10499401,
"terminalTotalDifficulty": 50000000000000000,
"terminalBlockHash": "0x5010949c3acdf1d076c9e4ee8aedbb539aca48ebe19638330bc02c5b1bfb953d",
"terminalBlockNumber": 12350712,
"ethash": {
},
"discovery": {
Expand Down

0 comments on commit b85b39d

Please sign in to comment.