mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 05:51:02 +00:00
Add missing fields to the light sync state (#7225)
* Initial draft * Add an iterator that helps us get most items * Revert changes to grandpa * Change fields to just be the grandpa authority set and babe epoch changes * Only use the fields we need from the shared authority set * Switch to RPC call * Revert "Only use the fields we need from the shared authority set" This reverts commit 6ede87b0c5fe53f251d7cb45951006a7dc8f9b83. * Add babe_finalized_block_weight from `ashley-improve-sync-state-WIP-loading` * Fix rpc test * Move sync state rpc stuff into sc-sync-state-rpc * Remove as_json_value and remove unwraps from sc-sync-state-rpc * Add clone_inner to SharedAuthoritySet
This commit is contained in:
@@ -194,7 +194,7 @@ where F: Clone + Send + 'static, L: Clone + Send +'static, U: Clone + Send + 'st
|
||||
}
|
||||
}
|
||||
|
||||
fn node_config<G: RuntimeGenesis + 'static, E: ChainSpecExtension + Clone + 'static + Send> (
|
||||
fn node_config<G: RuntimeGenesis + 'static, E: ChainSpecExtension + Clone + 'static + Send + Sync> (
|
||||
index: usize,
|
||||
spec: &GenericChainSpec<G, E>,
|
||||
role: Role,
|
||||
@@ -275,7 +275,7 @@ fn node_config<G: RuntimeGenesis + 'static, E: ChainSpecExtension + Clone + 'sta
|
||||
impl<G, E, F, L, U> TestNet<G, E, F, L, U> where
|
||||
F: TestNetNode,
|
||||
L: TestNetNode,
|
||||
E: ChainSpecExtension + Clone + 'static + Send,
|
||||
E: ChainSpecExtension + Clone + 'static + Send + Sync,
|
||||
G: RuntimeGenesis + 'static,
|
||||
{
|
||||
fn new(
|
||||
@@ -389,7 +389,7 @@ pub fn connectivity<G, E, Fb, F, Lb, L>(
|
||||
full_builder: Fb,
|
||||
light_builder: Lb,
|
||||
) where
|
||||
E: ChainSpecExtension + Clone + 'static + Send,
|
||||
E: ChainSpecExtension + Clone + 'static + Send + Sync,
|
||||
G: RuntimeGenesis + 'static,
|
||||
Fb: Fn(Configuration) -> Result<F, Error>,
|
||||
F: TestNetNode,
|
||||
@@ -509,7 +509,7 @@ pub fn sync<G, E, Fb, F, Lb, L, B, ExF, U>(
|
||||
B: FnMut(&F, &mut U),
|
||||
ExF: FnMut(&F, &U) -> <F::Block as BlockT>::Extrinsic,
|
||||
U: Clone + Send + 'static,
|
||||
E: ChainSpecExtension + Clone + 'static + Send,
|
||||
E: ChainSpecExtension + Clone + 'static + Send + Sync,
|
||||
G: RuntimeGenesis + 'static,
|
||||
{
|
||||
const NUM_FULL_NODES: usize = 10;
|
||||
@@ -584,7 +584,7 @@ pub fn consensus<G, E, Fb, F, Lb, L>(
|
||||
F: TestNetNode,
|
||||
Lb: Fn(Configuration) -> Result<L, Error>,
|
||||
L: TestNetNode,
|
||||
E: ChainSpecExtension + Clone + 'static + Send,
|
||||
E: ChainSpecExtension + Clone + 'static + Send + Sync,
|
||||
G: RuntimeGenesis + 'static,
|
||||
{
|
||||
const NUM_FULL_NODES: usize = 10;
|
||||
|
||||
Reference in New Issue
Block a user