Make impl_outer_event! aware of required generic parameters (#729)

This commit is contained in:
Bastian Köcher
2018-09-12 19:12:28 +02:00
committed by Gav Wood
parent a813d54965
commit 5bd0ecddd2
5 changed files with 116 additions and 22 deletions
+2 -2
View File
@@ -144,7 +144,7 @@ mod tests {
impl_outer_event! {
pub enum Event for Test {
balances, democracy, seats, voting, motions
balances<T>, democracy<T>, seats<T>, voting<T>, motions<T>,
}
}
@@ -235,4 +235,4 @@ mod tests {
pub type Council = seats::Module<Test>;
pub type CouncilVoting = voting::Module<Test>;
pub type CouncilMotions = motions::Module<Test>;
}
}