From 1a9354397077c1a08f415e4e72d4d0bee28bfd65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Thu, 27 Nov 2025 08:26:07 +0100 Subject: [PATCH] chore: fix typo to make ci happy --- crates/transaction-pool/src/validate/eth.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/transaction-pool/src/validate/eth.rs b/crates/transaction-pool/src/validate/eth.rs index 945f6c1c738..14e91e16ca9 100644 --- a/crates/transaction-pool/src/validate/eth.rs +++ b/crates/transaction-pool/src/validate/eth.rs @@ -1679,7 +1679,7 @@ mod tests { ExtendedAccount::new(transaction.nonce(), alloy_primitives::U256::ZERO), ); - // Valdiate with balance check enabled + // Validate with balance check enabled let validator = EthTransactionValidatorBuilder::new(provider.clone()) .build(InMemoryBlobStore::default()); @@ -1695,7 +1695,7 @@ mod tests { panic!("Expected Invalid outcome with InsufficientFunds error"); } - // Valdiate with balance check disabled + // Validate with balance check disabled let validator = EthTransactionValidatorBuilder::new(provider) .disable_balance_check() // This should allow the transaction through despite zero balance .build(InMemoryBlobStore::default());