fix: Do not check eip-1559 basefee

This commit is contained in:
sprites0
2025-06-22 14:49:01 -04:00
parent bb8d824aaf
commit ec1b81a36a

View File

@ -70,11 +70,11 @@ impl<ChainSpec: EthChainSpec + HlHardforks> HeaderValidator for HlConsensus<Chai
validate_against_parent_timestamp(header.header(), parent.header())?; validate_against_parent_timestamp(header.header(), parent.header())?;
validate_against_parent_eip1559_base_fee( // validate_against_parent_eip1559_base_fee(
header.header(), // header.header(),
parent.header(), // parent.header(),
&self.chain_spec, // &self.chain_spec,
)?; // )?;
// ensure that the blob gas fields for this block // ensure that the blob gas fields for this block
if let Some(blob_params) = self.chain_spec.blob_params_at_timestamp(header.timestamp) { if let Some(blob_params) = self.chain_spec.blob_params_at_timestamp(header.timestamp) {