Eip 3554 enabled, London blocks defined (#433)

* Eip 3554 enabled
* london hard fork blocks
This commit is contained in:
Dusan Stanivukovic
2021-06-15 11:18:56 +02:00
committed by GitHub
parent 5dec58ba9f
commit 93b39df02d
5 changed files with 38 additions and 8 deletions

View File

@@ -86,7 +86,7 @@ mod tests {
|| ethereum::new_foundation(&String::new()),
vec![
1_150_000, 1_920_000, 2_463_000, 2_675_000, 4_370_000, 7_280_000, 9_069_000,
9_200_000, 12_244_000,
9_200_000, 12_244_000, 12_833_000,
],
)
}
@@ -96,7 +96,7 @@ mod tests {
test_spec(
|| ethereum::new_ropsten(&String::new()),
vec![
10, 1_700_000, 4_230_000, 4_939_394, 6_485_846, 7_117_117, 9_812_189,
10, 1_700_000, 4_230_000, 4_939_394, 6_485_846, 7_117_117, 9_812_189, 10_499_401,
],
)
}
@@ -106,7 +106,7 @@ mod tests {
test_spec(
|| ethereum::new_rinkeby(&String::new()),
vec![
1, 2, 3, 1_035_301, 3_660_663, 4_321_234, 5_435_345, 8_290_928,
1, 2, 3, 1_035_301, 3_660_663, 4_321_234, 5_435_345, 8_290_928, 8_897_988,
],
)
}
@@ -115,7 +115,7 @@ mod tests {
fn goerli_spec() {
test_spec(
|| ethereum::new_goerli(&String::new()),
vec![1_561_651, 4_460_644],
vec![1_561_651, 4_460_644, 5_062_605],
)
}
}