diff --git a/src/lib.rs b/src/lib.rs index 5eea7302fc..2f0347117d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -413,6 +413,7 @@ mod tests { type Event = ::Event; type SignedExtra = ( + srml_system::CheckVersion, srml_system::CheckGenesis, srml_system::CheckEra, srml_system::CheckNonce, @@ -421,6 +422,7 @@ mod tests { ); fn extra(nonce: Self::Index) -> Self::SignedExtra { ( + srml_system::CheckVersion::::new(), srml_system::CheckGenesis::::new(), srml_system::CheckEra::::from(Era::Immortal), srml_system::CheckNonce::::from(nonce),