Skip to content

Commit

Permalink
rm no_eip4844 in tx pool
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger committed Sep 3, 2024
1 parent c933e71 commit 5e5edf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/pool/src/validate/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ impl KakarotTransactionValidatorBuilder {
Self(EthTransactionValidatorBuilder::new(chain_spec))
}

/// Build the [`EthTransactionValidator`]. Force `no_eip4844`.
/// Build the [`EthTransactionValidator`].
pub fn build<Client, S>(
self,
client: Client,
Expand All @@ -27,7 +27,7 @@ impl KakarotTransactionValidatorBuilder {
where
S: BlobStore,
{
let validator = self.0.no_eip4844().build(client, store);
let validator = self.0.build(client, store);
KakarotEthTransactionValidator { inner: validator }
}
}
Expand Down

0 comments on commit 5e5edf2

Please sign in to comment.