diff --git a/frame/ethereum/src/lib.rs b/frame/ethereum/src/lib.rs index 848960a51a..508cadfdd9 100644 --- a/frame/ethereum/src/lib.rs +++ b/frame/ethereum/src/lib.rs @@ -519,7 +519,7 @@ impl Pallet { // 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::::get(origin).is_empty() { return Err(InvalidTransaction::BadSigner.into());