Skip to content

Commit

Permalink
add missing frame_system::Config members
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadkaouk committed Jun 6, 2024
1 parent fd8aeff commit 8873c20
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions runtime/moonbase/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,11 @@ impl frame_system::Config for Runtime {
type SS58Prefix = ConstU16<1287>;
type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode<Self>;
type MaxConsumers = frame_support::traits::ConstU32<16>;
type SingleBlockMigrations = ();
type MultiBlockMigrator = ();
type PreInherents = ();
type PostInherents = ();
type PostTransactions = ();
}

impl pallet_utility::Config for Runtime {
Expand Down
5 changes: 5 additions & 0 deletions runtime/moonbeam/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,11 @@ impl frame_system::Config for Runtime {
type SS58Prefix = ConstU16<1284>;
type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode<Self>;
type MaxConsumers = frame_support::traits::ConstU32<16>;
type SingleBlockMigrations = ();
type MultiBlockMigrator = ();
type PreInherents = ();
type PostInherents = ();
type PostTransactions = ();
}

impl pallet_utility::Config for Runtime {
Expand Down
5 changes: 5 additions & 0 deletions runtime/moonriver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,11 @@ impl frame_system::Config for Runtime {
type SS58Prefix = ConstU16<1285>;
type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode<Self>;
type MaxConsumers = frame_support::traits::ConstU32<16>;
type SingleBlockMigrations = ();
type MultiBlockMigrator = ();
type PreInherents = ();
type PostInherents = ();
type PostTransactions = ();
}

impl pallet_utility::Config for Runtime {
Expand Down

0 comments on commit 8873c20

Please sign in to comment.