mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 11:07:56 +00:00
make SelectChain async (#9128)
* make SelectChain async * make JustificationImport async
This commit is contained in:
@@ -160,10 +160,15 @@ fn record_proof_works() {
|
||||
.build_with_longest_chain();
|
||||
|
||||
let block_id = BlockId::Number(client.chain_info().best_number);
|
||||
let storage_root = longest_chain.best_chain().unwrap().state_root().clone();
|
||||
let storage_root = futures::executor::block_on(longest_chain.best_chain())
|
||||
.unwrap()
|
||||
.state_root()
|
||||
.clone();
|
||||
|
||||
let runtime_code = sp_core::traits::RuntimeCode {
|
||||
code_fetcher: &sp_core::traits::WrappedRuntimeCode(client.code_at(&block_id).unwrap().into()),
|
||||
code_fetcher: &sp_core::traits::WrappedRuntimeCode(
|
||||
client.code_at(&block_id).unwrap().into(),
|
||||
),
|
||||
hash: vec![1],
|
||||
heap_pages: None,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user