new ropsten ttd (#3903)

Signed-off-by: Justin Florentine <justin+github@florentine.us>
pull/3907/head
Justin Florentine 2 years ago committed by GitHub
parent 51ba246883
commit ed979fa524
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      config/src/main/resources/ropsten.json
  2. 2
      config/src/test/java/org/hyperledger/besu/config/GenesisConfigFileTest.java

@ -10,7 +10,7 @@
"muirGlacierBlock": 7117117,
"berlinBlock": 9812189,
"londonBlock": 10499401,
"terminalTotalDifficulty": 43531756765713534,
"terminalTotalDifficulty": 100000000000000000000000,
"ethash": {
},
"discovery": {
@ -886,4 +886,4 @@
"balance": "1000000000000000000000000000000"
}
}
}
}

@ -205,7 +205,7 @@ public class GenesisConfigFileTest {
assertThat(ropstenOptions.getTerminalTotalDifficulty()).isPresent();
assertThat(ropstenOptions.getTerminalTotalDifficulty().get())
.isEqualTo(UInt256.valueOf(43531756765713534L));
.isEqualTo(UInt256.valueOf(new BigInteger("100000000000000000000000")));
}
@Test

Loading…
Cancel
Save