Bump runtime version, update substrate. (#526)

* Bump substrate

* Bump runtime version

* Fix Configuration stuff

* switch to custom branch

* add new backend entry, ignore it

* Bump runtime version, update substrate.

* Rename branch back

* Update substrate
This commit is contained in:
Gavin Wood
2019-11-01 15:57:07 +00:00
committed by GitHub
parent 80662344f1
commit 848784e8ec
3 changed files with 88 additions and 88 deletions
+2 -2
View File
@@ -116,7 +116,7 @@ macro_rules! new_full_start {
import_setup = Some((block_import, grandpa_link, babe_link));
Ok(import_queue)
})?
.with_rpc_extensions(|client, pool| -> polkadot_rpc::RpcExtension {
.with_rpc_extensions(|client, pool, _backend| -> polkadot_rpc::RpcExtension {
polkadot_rpc::create(client, pool)
})?;
@@ -374,7 +374,7 @@ pub fn new_light(config: Configuration<CustomConfiguration, GenesisConfig>)
.with_finality_proof_provider(|client, backend|
Ok(Arc::new(GrandpaFinalityProofProvider::new(backend, client)) as _)
)?
.with_rpc_extensions(|client, pool| -> polkadot_rpc::RpcExtension {
.with_rpc_extensions(|client, pool, _backend| -> polkadot_rpc::RpcExtension {
polkadot_rpc::create(client, pool)
})?
.build()