git.delta.rocks / unique-network / refs/commits / 283713e8c803

difftreelog

build fix chain spec

Yaroslav Bolyukin2021-11-01parent: #20c35b2.patch.diff
in: master

2 files changed

modifiednode/cli/src/chain_spec.rsdiffbeforeafterboth
166 },166 },
167 treasury: Default::default(),167 treasury: Default::default(),
168 sudo: SudoConfig { key: root_key },168 sudo: SudoConfig { key: root_key },
169 vesting: VestingConfig {169 vesting: VestingConfig { vesting: vec![] },
170 vesting: vested_accounts
171 .iter()
172 .cloned()
173 .map(|k| (k, 1000, 100, 1 << 98))
174 .collect(),
175 },
176 parachain_info: nft_runtime::ParachainInfoConfig { parachain_id: id },170 parachain_info: nft_runtime::ParachainInfoConfig { parachain_id: id },
177 aura: nft_runtime::AuraConfig {171 aura: nft_runtime::AuraConfig {
modifiedpallets/fungible/Cargo.tomldiffbeforeafterboth
--- a/pallets/fungible/Cargo.toml
+++ b/pallets/fungible/Cargo.toml
@@ -21,7 +21,7 @@
 ethereum = { git = "https://github.com/purestake/ethereum", branch = "joshy-scale-info", default-features = false }
 pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }
 frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }
-scale-info = { default-features = false, features = [
+scale-info = { version = "1.0.0", default-features = false, features = [
     "derive",
 ] }