From 2b115e386377467e7e2dd5b0caf0429ff0c6e85f Mon Sep 17 00:00:00 2001 From: Jaco Greeff Date: Sun, 18 Aug 2019 18:53:03 +0200 Subject: [PATCH] Add CheckVersion to SignedExtra --- node/runtime/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/node/runtime/src/lib.rs b/node/runtime/src/lib.rs index c2cbe74194e96..0a7016770d24d 100644 --- a/node/runtime/src/lib.rs +++ b/node/runtime/src/lib.rs @@ -463,6 +463,7 @@ pub type SignedBlock = generic::SignedBlock; pub type BlockId = generic::BlockId; /// The SignedExtension to the basic transaction logic. pub type SignedExtra = ( + system::CheckVersion, system::CheckGenesis, system::CheckEra, system::CheckNonce,