From 6eff02931b5fd6b2a8bb25cea1f76ffc7692fd0d Mon Sep 17 00:00:00 2001 From: code0xff Date: Mon, 19 Aug 2024 14:53:07 +0900 Subject: [PATCH] Fix typos --- frame/ethereum/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());