From ec5c7762a0cad1936b9d8fb823b5d48d9a74cd3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Tue, 6 Apr 2021 15:08:04 +0200 Subject: [PATCH] Require `FullCodec` on frame_system::Call (#8540) --- substrate/frame/system/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/frame/system/src/lib.rs b/substrate/frame/system/src/lib.rs index d8a50f9f7a..536127e672 100644 --- a/substrate/frame/system/src/lib.rs +++ b/substrate/frame/system/src/lib.rs @@ -182,7 +182,7 @@ pub mod pallet { + OriginTrait; /// The aggregated `Call` type. - type Call: Dispatchable + Debug; + type Call: Dispatchable + Debug + FullCodec; /// Account index (aka nonce) type. This stores the number of previous transactions associated /// with a sender account.