From 283713e8c803beb3f3d899d680854c31a2ad9f34 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Mon, 01 Nov 2021 14:34:48 +0000 Subject: [PATCH] build: fix chain spec --- --- 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, --- 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", ] } -- gitstuff