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
@@ -58,7 +58,7 @@ frame-system = { path = "../../../frame/system", default-features = false }
frame-system-rpc-runtime-api = { path = "../../../frame/system/rpc/runtime-api/", default-features = false }
pallet-timestamp = { path = "../../../frame/timestamp", default-features = false }
pallet-treasury = { path = "../../../frame/treasury", default-features = false }
frame-utility = { path = "../../../frame/utility", default-features = false }
pallet-utility = { path = "../../../frame/utility", default-features = false }
pallet-transaction-payment = { path = "../../../frame/transaction-payment", default-features = false }
pallet-transaction-payment-rpc-runtime-api = { path = "../../../frame/transaction-payment/rpc/runtime-api/", default-features = false }
@@ -117,6 +117,6 @@ std = [
"pallet-transaction-payment/std",
"pallet-treasury/std",
"sp-transaction-pool/std",
"frame-utility/std",
"pallet-utility/std",
"sp-version/std",
]