chore: regenerate umbrella crate, fix feature propagation
This commit is contained in:
@@ -32,7 +32,6 @@ use crate::cli::AuthoringPolicy;
|
||||
use pezcumulus_primitives_core::{CollectCollationInfo, GetTeyrchainInfo, RelayParentOffsetApi};
|
||||
use pezsc_client_db::DbHash;
|
||||
use pezsc_offchain::OffchainWorkerApi;
|
||||
use serde::de::DeserializeOwned;
|
||||
use pezsp_api::{ApiExt, CallApiAt, ConstructRuntimeApi, Metadata};
|
||||
use pezsp_block_builder::BlockBuilder;
|
||||
use pezsp_runtime::{
|
||||
@@ -42,6 +41,7 @@ use pezsp_runtime::{
|
||||
use pezsp_session::SessionKeys;
|
||||
use pezsp_statement_store::runtime_api::ValidateStatement;
|
||||
use pezsp_transaction_pool::runtime_api::TaggedTransactionQueue;
|
||||
use serde::de::DeserializeOwned;
|
||||
use std::{fmt::Debug, path::PathBuf, str::FromStr};
|
||||
|
||||
pub trait NodeBlock:
|
||||
|
||||
@@ -22,6 +22,8 @@ use crate::common::{
|
||||
types::{AccountId, Balance, Nonce, TeyrchainBackend, TeyrchainClient},
|
||||
ConstructNodeRuntimeApi,
|
||||
};
|
||||
use bizinikiwi_frame_rpc_system::{System, SystemApiServer};
|
||||
use bizinikiwi_state_trie_migration_rpc::{StateMigration, StateMigrationApiServer};
|
||||
use pezpallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer};
|
||||
use pezsc_rpc::{
|
||||
dev::{Dev, DevApiServer},
|
||||
@@ -29,8 +31,6 @@ use pezsc_rpc::{
|
||||
};
|
||||
use pezsp_runtime::traits::Block as BlockT;
|
||||
use std::{marker::PhantomData, sync::Arc};
|
||||
use bizinikiwi_frame_rpc_system::{System, SystemApiServer};
|
||||
use bizinikiwi_state_trie_migration_rpc::{StateMigration, StateMigrationApiServer};
|
||||
|
||||
/// A type representing all RPC extensions.
|
||||
pub type RpcExtension = jsonrpsee::RpcModule<()>;
|
||||
@@ -63,7 +63,10 @@ where
|
||||
client: Arc<TeyrchainClient<Block, RuntimeApi>>,
|
||||
backend: Arc<TeyrchainBackend<Block>>,
|
||||
pool: Arc<
|
||||
pezsc_transaction_pool::TransactionPoolHandle<Block, TeyrchainClient<Block, RuntimeApi>>,
|
||||
pezsc_transaction_pool::TransactionPoolHandle<
|
||||
Block,
|
||||
TeyrchainClient<Block, RuntimeApi>,
|
||||
>,
|
||||
>,
|
||||
statement_store: Option<Arc<pezsc_statement_store::Store>>,
|
||||
) -> pezsc_service::error::Result<RpcExtension> {
|
||||
|
||||
@@ -29,6 +29,8 @@ use crate::{
|
||||
},
|
||||
};
|
||||
use codec::Encode;
|
||||
use futures::FutureExt;
|
||||
use log::info;
|
||||
use pezcumulus_client_bootnodes::{start_bootnode_tasks, StartBootnodeTasksParams};
|
||||
use pezcumulus_client_cli::CollatorOptions;
|
||||
use pezcumulus_client_service::{
|
||||
@@ -38,10 +40,7 @@ use pezcumulus_client_service::{
|
||||
};
|
||||
use pezcumulus_primitives_core::{BlockT, GetTeyrchainInfo, ParaId};
|
||||
use pezcumulus_relay_chain_interface::{OverseerHandle, RelayChainInterface};
|
||||
use futures::FutureExt;
|
||||
use log::info;
|
||||
use pezkuwi_primitives::CollatorPair;
|
||||
use prometheus_endpoint::Registry;
|
||||
use pezsc_client_api::Backend;
|
||||
use pezsc_consensus::DefaultImportQueue;
|
||||
use pezsc_executor::{HeapAllocStrategy, DEFAULT_HEAP_ALLOC_STRATEGY};
|
||||
@@ -58,6 +57,7 @@ use pezsc_transaction_pool_api::OffchainTransactionPoolFactory;
|
||||
use pezsp_api::{ApiExt, ProvideRuntimeApi};
|
||||
use pezsp_keystore::KeystorePtr;
|
||||
use pezsp_runtime::traits::AccountIdConversion;
|
||||
use prometheus_endpoint::Registry;
|
||||
use std::{future::Future, pin::Pin, sync::Arc, time::Duration};
|
||||
use teyrchains_common::Hash;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user