File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/transaction-pool/src/validate Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1679,7 +1679,7 @@ mod tests {
16791679 ExtendedAccount :: new ( transaction. nonce ( ) , alloy_primitives:: U256 :: ZERO ) ,
16801680 ) ;
16811681
1682- // Valdiate with balance check enabled
1682+ // Validate with balance check enabled
16831683 let validator = EthTransactionValidatorBuilder :: new ( provider. clone ( ) )
16841684 . build ( InMemoryBlobStore :: default ( ) ) ;
16851685
@@ -1695,7 +1695,7 @@ mod tests {
16951695 panic ! ( "Expected Invalid outcome with InsufficientFunds error" ) ;
16961696 }
16971697
1698- // Valdiate with balance check disabled
1698+ // Validate with balance check disabled
16991699 let validator = EthTransactionValidatorBuilder :: new ( provider)
17001700 . disable_balance_check ( ) // This should allow the transaction through despite zero balance
17011701 . build ( InMemoryBlobStore :: default ( ) ) ;
You can’t perform that action at this time.
0 commit comments