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
21ethereum = { git = "https://github.com/purestake/ethereum", branch = "joshy-scale-info", default-features = false }21ethereum = { git = "https://github.com/purestake/ethereum", branch = "joshy-scale-info", default-features = false }
22pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }22pallet-evm-coder-substrate = { default-features = false, path = '../evm-coder-substrate' }
23frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }23frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }
24scale-info = { default-features = false, features = [24scale-info = { version = "1.0.0", default-features = false, features = [
25 "derive",25 "derive",
26] }26] }
2727