Skip to content

Commit

Permalink
[PAN-3160] Rinkeby Istanbul fork block (#35)
Browse files Browse the repository at this point in the history
The Rinkeby Fork Block for Istanbul is 5435345, targeting 13 Nov 2019.

As announced by the Rinkeby maintainers here: https://twitter.com/peter_szilagyi/status/1174580897980592129

Signed-off-by: Danno Ferrin <[email protected]>
  • Loading branch information
shemnon authored Sep 19, 2019
1 parent e0e7e88 commit adb54d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions config/src/main/resources/rinkeby.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"byzantiumBlock": 1035301,
"constantinopleBlock": 3660663,
"constantinopleFixBlock": 4321234,
"istanbulBlock": 5435345,
"clique": {
"blockperiodseconds": 15,
"epochlength": 30000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void shouldCreateRinkebyConfig() throws Exception {
Assertions.assertThat(sched.getByBlockNumber(3_660_663L).getName()).isEqualTo("Constantinople");
Assertions.assertThat(sched.getByBlockNumber(4_321_234L).getName())
.isEqualTo("ConstantinopleFix");
Assertions.assertThat(sched.getByBlockNumber(Long.MAX_VALUE).getName())
.isEqualTo("ConstantinopleFix");
Assertions.assertThat(sched.getByBlockNumber(5_435_345L).getName()).isEqualTo("Istanbul");
Assertions.assertThat(sched.getByBlockNumber(Long.MAX_VALUE).getName()).isEqualTo("Istanbul");
}
}

0 comments on commit adb54d6

Please sign in to comment.