companion pr for #6235 (#1215)

* companion pr for paritytech/substrate#6235

* ???

* nah doesn't work for my branch

* bump Cargo.lock

* bump kusama spec versin

* bump kusama spec version

* revert to master

* bump Cargo.lock

Co-authored-by: Bastian Köcher <git@kchr.de>
This commit is contained in:
Seun Lanlege
2020-06-09 22:13:01 +01:00
committed by GitHub
parent f4ead58695
commit 752f560a0a
3 changed files with 372 additions and 349 deletions
+367 -345
View File
File diff suppressed because it is too large Load Diff
@@ -8,6 +8,7 @@ license = "GPL-3.0"
[dependencies]
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-light = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["test-helpers"], default-features = false }
substrate-test-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
@@ -30,12 +30,12 @@ use sp_runtime::traits::{Block as BlockT, Header as HeaderT, Hash as HashT, Hash
use sc_consensus::LongestChain;
use sc_client_api::light::{RemoteCallRequest, RemoteBodyRequest};
use sc_service::client::{
light::{
call_executor::GenesisCallExecutor, backend as light_backend,
new_light_blockchain, new_light_backend,
},
genesis, Client as SubstrateClient, LocalCallExecutor
};
use sc_light::{
call_executor::GenesisCallExecutor, backend as light_backend,
new_light_blockchain, new_light_backend,
};
/// A prelude to import in tests.
pub mod prelude {