From bff0e977511067e62f41d597bc092ab43fcdb6b6 Mon Sep 17 00:00:00 2001 From: MOZGIII Date: Thu, 12 Dec 2024 14:40:55 -0300 Subject: [PATCH] Fix comment --- crates/pallet-token-claims/src/signed_ext.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/pallet-token-claims/src/signed_ext.rs b/crates/pallet-token-claims/src/signed_ext.rs index d595d2268..566e18ef2 100644 --- a/crates/pallet-token-claims/src/signed_ext.rs +++ b/crates/pallet-token-claims/src/signed_ext.rs @@ -107,7 +107,7 @@ where _len: usize, ) -> TransactionValidity { match call.is_sub_type() { - // Disallow `claim` call - can't be used an unsigned tx. + // Disallow `claim` call - can't be used as an unsigned tx. Some(Call::claim { .. }) => InvalidTransaction::Call.into(), _ => Ok(Default::default()), }