Skip to content

Commit 3b9da22

Browse files
authored
chore: fix typo to make ci happy (#367)
1 parent 11d0a3f commit 3b9da22

File tree

1 file changed

+2
-2
lines changed
  • crates/transaction-pool/src/validate

1 file changed

+2
-2
lines changed

crates/transaction-pool/src/validate/eth.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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());

0 commit comments

Comments
 (0)