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());