Remove node-primitives (#1032)

This is a crate that shouldn't be used outside of the Substrate Node. Here the correct crate is the
`polkadot-core-primitives` to get the `Balance` type.
This commit is contained in:
Bastian Köcher
2022-02-22 23:19:19 +01:00
committed by GitHub
parent daade87017
commit 171a473b2a
9 changed files with 30 additions and 21 deletions
+3 -1
View File
@@ -73,6 +73,7 @@ parachain-info = { path = "../pallets/parachain-info", default-features = false
# Polkadot Dependencies
polkadot-parachain = { git = 'https://github.com/paritytech/polkadot', default-features = false , branch = "master" }
polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
kusama-runtime-constants = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm = { git = 'https://github.com/paritytech/polkadot', default-features = false , branch = "master" }
xcm-builder = { git = 'https://github.com/paritytech/polkadot', default-features = false , branch = "master" }
@@ -142,6 +143,7 @@ std = [
"xcm/std",
"xcm-builder/std",
"xcm-executor/std",
"polkadot-core-primitives/std",
]
# Make contract callable functions marked as __unstable__ available. Do not enable
@@ -171,4 +173,4 @@ runtime-benchmarks = [
try-runtime = [
"frame-try-runtime",
"frame-executive/try-runtime",
]
]