Trie State migration rpc (#5180)

* update

* unsafe

* switch remote

* update rpc usage

* update cargo.lock

* lock from master

* updated lock
This commit is contained in:
cheme
2022-04-04 09:33:35 +02:00
committed by GitHub
parent 521f97ae48
commit 8f784d592a
4 changed files with 32 additions and 1 deletions
+2 -1
View File
@@ -512,6 +512,7 @@ where
let transaction_pool = transaction_pool.clone();
let select_chain = select_chain.clone();
let chain_spec = config.chain_spec.cloned_box();
let backend = backend.clone();
move |deny_unsafe,
subscription_executor: polkadot_rpc::SubscriptionTaskExecutor|
@@ -541,7 +542,7 @@ where
},
};
polkadot_rpc::create_full(deps).map_err(Into::into)
polkadot_rpc::create_full(deps, backend.clone()).map_err(Into::into)
}
};