chore: rm validate delegate (#13190)

This commit is contained in:
Matthias Seitz
2024-12-06 20:57:01 +01:00
committed by GitHub
parent 4f28d6c7a4
commit 53f7297618
2 changed files with 1 additions and 12 deletions

View File

@ -198,7 +198,7 @@ where
// Verify that the given blob data, commitments, and proofs are all valid for
// this transaction.
if let PooledTransactionsElement::BlobTransaction(ref tx) = tx {
tx.validate(EnvKzgSettings::Default.get()).map_err(|e| {
tx.tx().validate_blob(EnvKzgSettings::Default.get()).map_err(|e| {
Eth::Error::from_eth_err(EthApiError::InvalidParams(e.to_string()))
})?;
}