From aefb75b96e43c9b0a2f85d4cda3c973bb96e1a93 Mon Sep 17 00:00:00 2001 From: Miguel Hervas Date: Fri, 29 Jul 2022 09:15:48 -0700 Subject: [PATCH] Adding TxVersion Check to signed params (#1483) --- cumulus/parachains/runtimes/testing/rococo-parachain/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cumulus/parachains/runtimes/testing/rococo-parachain/src/lib.rs b/cumulus/parachains/runtimes/testing/rococo-parachain/src/lib.rs index 48ddc716b2..05837b4464 100644 --- a/cumulus/parachains/runtimes/testing/rococo-parachain/src/lib.rs +++ b/cumulus/parachains/runtimes/testing/rococo-parachain/src/lib.rs @@ -570,6 +570,7 @@ pub type BlockId = generic::BlockId; pub type SignedExtra = ( frame_system::CheckNonZeroSender, frame_system::CheckSpecVersion, + frame_system::CheckTxVersion, frame_system::CheckGenesis, frame_system::CheckEra, frame_system::CheckNonce,