mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
* move client consensus code out of primitives * merging crates * import tweak * Fixing build: ServiceFactory is a word... * updating lock file * Fixed typo in error message (to bump build) * update Substrate Co-authored-by: parity-processbot <>
This commit is contained in:
Generated
+177
-161
File diff suppressed because it is too large
Load Diff
@@ -61,7 +61,7 @@ pub fn new_partial(
|
|||||||
FullClient,
|
FullClient,
|
||||||
FullBackend,
|
FullBackend,
|
||||||
FullSelectChain,
|
FullSelectChain,
|
||||||
sp_consensus::DefaultImportQueue<Block, FullClient>,
|
sc_consensus::DefaultImportQueue<Block, FullClient>,
|
||||||
sc_transaction_pool::FullPool<Block, FullClient>,
|
sc_transaction_pool::FullPool<Block, FullClient>,
|
||||||
(
|
(
|
||||||
sc_finality_grandpa::GrandpaBlockImport<FullBackend, Block, FullClient, FullSelectChain>,
|
sc_finality_grandpa::GrandpaBlockImport<FullBackend, Block, FullClient, FullSelectChain>,
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ pub fn new_partial(
|
|||||||
FullClient,
|
FullClient,
|
||||||
FullBackend,
|
FullBackend,
|
||||||
FullSelectChain,
|
FullSelectChain,
|
||||||
sp_consensus::DefaultImportQueue<Block, FullClient>,
|
sc_consensus::DefaultImportQueue<Block, FullClient>,
|
||||||
sc_transaction_pool::FullPool<Block, FullClient>,
|
sc_transaction_pool::FullPool<Block, FullClient>,
|
||||||
(
|
(
|
||||||
sc_finality_grandpa::GrandpaBlockImport<FullBackend, Block, FullClient, FullSelectChain>,
|
sc_finality_grandpa::GrandpaBlockImport<FullBackend, Block, FullClient, FullSelectChain>,
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ pub enum Error {
|
|||||||
#[error("Too many chunks present")]
|
#[error("Too many chunks present")]
|
||||||
TooManyChunks,
|
TooManyChunks,
|
||||||
/// Chunks not of uniform length or the chunks are empty.
|
/// Chunks not of uniform length or the chunks are empty.
|
||||||
#[error("Chunks are not unform, mismatch in length or are zero sized")]
|
#[error("Chunks are not uniform, mismatch in length or are zero sized")]
|
||||||
NonUniformChunks,
|
NonUniformChunks,
|
||||||
/// An uneven byte-length of a shard is not valid for `GF(2^16)` encoding.
|
/// An uneven byte-length of a shard is not valid for `GF(2^16)` encoding.
|
||||||
#[error("Uneven length is not valid for field GF(2^16)")]
|
#[error("Uneven length is not valid for field GF(2^16)")]
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch
|
|||||||
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
|
|
||||||
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
||||||
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
||||||
|
|||||||
@@ -93,10 +93,10 @@ pub use polkadot_client::{
|
|||||||
RuntimeApiCollection,
|
RuntimeApiCollection,
|
||||||
};
|
};
|
||||||
pub use chain_spec::{PolkadotChainSpec, KusamaChainSpec, WestendChainSpec, RococoChainSpec};
|
pub use chain_spec::{PolkadotChainSpec, KusamaChainSpec, WestendChainSpec, RococoChainSpec};
|
||||||
pub use consensus_common::{Proposal, SelectChain, BlockImport, block_validation::Chain};
|
pub use consensus_common::{Proposal, SelectChain, block_validation::Chain};
|
||||||
pub use polkadot_primitives::v1::{Block, BlockId, CollatorPair, Hash, Id as ParaId};
|
pub use polkadot_primitives::v1::{Block, BlockId, CollatorPair, Hash, Id as ParaId};
|
||||||
pub use sc_client_api::{Backend, ExecutionStrategy, CallExecutor};
|
pub use sc_client_api::{Backend, ExecutionStrategy, CallExecutor};
|
||||||
pub use sc_consensus::LongestChain;
|
pub use sc_consensus::{BlockImport, LongestChain};
|
||||||
pub use sc_executor::NativeExecutionDispatch;
|
pub use sc_executor::NativeExecutionDispatch;
|
||||||
pub use service::{
|
pub use service::{
|
||||||
Role, PruningMode, TransactionPoolOptions, Error as SubstrateServiceError, RuntimeGenesis,
|
Role, PruningMode, TransactionPoolOptions, Error as SubstrateServiceError, RuntimeGenesis,
|
||||||
@@ -324,7 +324,7 @@ fn new_partial<RuntimeApi, Executor>(
|
|||||||
) -> Result<
|
) -> Result<
|
||||||
service::PartialComponents<
|
service::PartialComponents<
|
||||||
FullClient<RuntimeApi, Executor>, FullBackend, FullSelectChain,
|
FullClient<RuntimeApi, Executor>, FullBackend, FullSelectChain,
|
||||||
consensus_common::DefaultImportQueue<Block, FullClient<RuntimeApi, Executor>>,
|
sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, Executor>>,
|
||||||
sc_transaction_pool::FullPool<Block, FullClient<RuntimeApi, Executor>>,
|
sc_transaction_pool::FullPool<Block, FullClient<RuntimeApi, Executor>>,
|
||||||
(
|
(
|
||||||
impl Fn(
|
impl Fn(
|
||||||
@@ -1214,7 +1214,7 @@ pub fn new_chain_ops(
|
|||||||
(
|
(
|
||||||
Arc<Client>,
|
Arc<Client>,
|
||||||
Arc<FullBackend>,
|
Arc<FullBackend>,
|
||||||
consensus_common::import_queue::BasicQueue<Block, PrefixedMemoryDB<BlakeTwo256>>,
|
sc_consensus::BasicQueue<Block, PrefixedMemoryDB<BlakeTwo256>>,
|
||||||
TaskManager,
|
TaskManager,
|
||||||
),
|
),
|
||||||
Error
|
Error
|
||||||
|
|||||||
@@ -195,6 +195,7 @@ SAFT
|
|||||||
scalability
|
scalability
|
||||||
SDF
|
SDF
|
||||||
sending/S
|
sending/S
|
||||||
|
ServiceFactory
|
||||||
shareable
|
shareable
|
||||||
Simnet/MS
|
Simnet/MS
|
||||||
spawn/SR
|
spawn/SR
|
||||||
|
|||||||
Reference in New Issue
Block a user