Check for invalid modules when registering a pallet in construct_runtime (#4520)

This commit is contained in:
Bastian Köcher
2020-01-02 20:10:20 +01:00
committed by GitHub
parent 508f94acdf
commit 4a9697db94
5 changed files with 31 additions and 16 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ frame_support::construct_runtime!(
UncheckedExtrinsic = UncheckedExtrinsic
{
System: system::{Module, Call, Event},
Balances: pallet_balances::{Module, Call, Event<T>, Config<T>, Error},
Balances: pallet_balances::{Module, Call, Event<T>, Config<T>},
Elections: elections::{Module, Call, Event<T>, Config<T>},
}
);