Fix naming of utility crate (it's a legit pallet) (#4408)

* Fix naming of utility crate (it's a legit pallet)

* Additional bits
This commit is contained in:
Gavin Wood
2019-12-17 14:25:52 +08:00
committed by GitHub
parent f20bb8b196
commit 48860a768b
4 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -127,7 +127,7 @@ impl frame_system::Trait for Runtime {
type Version = Version;
}
impl frame_utility::Trait for Runtime {
impl pallet_utility::Trait for Runtime {
type Event = Event;
type Call = Call;
}
@@ -515,7 +515,7 @@ construct_runtime!(
UncheckedExtrinsic = UncheckedExtrinsic
{
System: system::{Module, Call, Storage, Config, Event},
Utility: frame_utility::{Module, Call, Event},
Utility: pallet_utility::{Module, Call, Event},
Babe: pallet_babe::{Module, Call, Storage, Config, Inherent(Timestamp)},
Timestamp: pallet_timestamp::{Module, Call, Storage, Inherent},
Authorship: pallet_authorship::{Module, Call, Storage, Inherent},