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
--- a/node/cli/src/chain_spec.rs
+++ b/node/cli/src/chain_spec.rs
@@ -166,13 +166,7 @@
 		},
 		treasury: Default::default(),
 		sudo: SudoConfig { key: root_key },
-		vesting: VestingConfig {
-			vesting: vested_accounts
-				.iter()
-				.cloned()
-				.map(|k| (k, 1000, 100, 1 << 98))
-				.collect(),
-		},
+		vesting: VestingConfig { vesting: vec![] },
 		parachain_info: nft_runtime::ParachainInfoConfig { parachain_id: id },
 		aura: nft_runtime::AuraConfig {
 			authorities: initial_authorities,
modifiedpallets/fungible/Cargo.tomldiffbeforeafterboth
before · pallets/fungible/Cargo.toml
1[package]2name = "pallet-fungible"3version = "0.1.0"4edition = "2018"56[dependencies.codec]7default-features = false8features = ['derive']9package = 'parity-scale-codec'10version = '2.0.0'1112[dependencies]13frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }14frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }15sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }16sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }17sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }18pallet-common = { default-features = false, path = '../common' }19nft-data-structs = { default-features = false, path = '../../primitives/nft' }20evm-coder = { default-features = false, path = '../../crates/evm-coder' }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' }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 = [25    "derive",26] }2728[features]29default = ["std"]30std = [31    "frame-support/std",32    "frame-system/std",33    "sp-runtime/std",34    "sp-std/std",35    "nft-data-structs/std",36    "pallet-common/std",37    "evm-coder/std",38    "ethereum/std",39    'frame-benchmarking/std',40]41runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']
after · pallets/fungible/Cargo.toml
1[package]2name = "pallet-fungible"3version = "0.1.0"4edition = "2018"56[dependencies.codec]7default-features = false8features = ['derive']9package = 'parity-scale-codec'10version = '2.0.0'1112[dependencies]13frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }14frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }15sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }16sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }17sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }18pallet-common = { default-features = false, path = '../common' }19nft-data-structs = { default-features = false, path = '../../primitives/nft' }20evm-coder = { default-features = false, path = '../../crates/evm-coder' }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' }23frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }24scale-info = { version = "1.0.0", default-features = false, features = [25    "derive",26] }2728[features]29default = ["std"]30std = [31    "frame-support/std",32    "frame-system/std",33    "sp-runtime/std",34    "sp-std/std",35    "nft-data-structs/std",36    "pallet-common/std",37    "evm-coder/std",38    "ethereum/std",39    'frame-benchmarking/std',40]41runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']