Skip to content

Commit

Permalink
Fix typos (#1494)
Browse files Browse the repository at this point in the history
  • Loading branch information
code0xff committed Aug 23, 2024
1 parent 2e219e1 commit 6bf3f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frame/ethereum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ impl<T: Config> Pallet<T> {
// Do not allow transactions for which `tx.sender` has any code deployed.
//
// This check should be done on the transaction validation (here) **and**
// on trnasaction execution, otherwise a contract tx will be included in
// on transaction execution, otherwise a contract tx will be included in
// the mempool and pollute the mempool forever.
if !pallet_evm::AccountCodes::<T>::get(origin).is_empty() {
return Err(InvalidTransaction::BadSigner.into());
Expand Down

0 comments on commit 6bf3f63

Please sign in to comment.