bump ethereum tests 9.0.2, revert london mainnet block (#435)

* bump ethereum tests 9.0.2
* london mainnet block removed
This commit is contained in:
Dusan Stanivukovic
2021-06-16 20:48:23 +02:00
committed by GitHub
parent 193b25a22d
commit 17057eeedc
6 changed files with 7 additions and 14 deletions

View File

@@ -65,7 +65,7 @@ impl From<ethjson::spec::Genesis> for Genesis {
state_root: g.state_root.map(Into::into),
gas_used: g.gas_used.map_or_else(U256::zero, Into::into),
extra_data: g.extra_data.map_or_else(Vec::new, Into::into),
base_fee: g.base_fee.map(Into::into),
base_fee: g.base_fee_per_gas.map(Into::into),
}
}
}