Skip to content

Commit

Permalink
new ropsten ttd (hyperledger#3903)
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Florentine <justin+github@florentine.us>
  • Loading branch information
jflo authored May 26, 2022
1 parent 51ba246 commit ed979fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/src/main/resources/ropsten.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"muirGlacierBlock": 7117117,
"berlinBlock": 9812189,
"londonBlock": 10499401,
"terminalTotalDifficulty": 43531756765713534,
"terminalTotalDifficulty": 100000000000000000000000,
"ethash": {
},
"discovery": {
Expand Down Expand Up @@ -886,4 +886,4 @@
"balance": "1000000000000000000000000000000"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public void assertRopstenTerminalTotalDifficulty() {

assertThat(ropstenOptions.getTerminalTotalDifficulty()).isPresent();
assertThat(ropstenOptions.getTerminalTotalDifficulty().get())
.isEqualTo(UInt256.valueOf(43531756765713534L));
.isEqualTo(UInt256.valueOf(new BigInteger("100000000000000000000000")));
}

@Test
Expand Down

0 comments on commit ed979fa

Please sign in to comment.