chore: regenerate umbrella crate, fix feature propagation

This commit is contained in:
2025-12-16 11:28:32 +03:00
parent dd6d48f528
commit 620b0e3aa0
1358 changed files with 9464 additions and 7656 deletions
@@ -20,10 +20,10 @@ use std::{
pin::Pin,
};
use futures::{Stream, StreamExt};
use pezcumulus_primitives_core::{InboundDownwardMessage, ParaId, PersistedValidationData};
use pezcumulus_relay_chain_interface::{RelayChainError, RelayChainResult};
use pezcumulus_relay_chain_rpc_interface::RelayChainRpcClient;
use futures::{Stream, StreamExt};
use pezkuwi_core_primitives::{Block, BlockNumber, Hash, Header};
use pezkuwi_overseer::{ChainApiBackend, RuntimeApiSubsystemClient};
use pezkuwi_primitives::{
@@ -217,7 +217,8 @@ impl RuntimeApiSubsystemClient for BlockChainRpcClient {
&self,
at: Hash,
para_id: pezcumulus_primitives_core::ParaId,
) -> Result<Option<pezkuwi_primitives::CommittedCandidateReceiptV2<Hash>>, pezsp_api::ApiError> {
) -> Result<Option<pezkuwi_primitives::CommittedCandidateReceiptV2<Hash>>, pezsp_api::ApiError>
{
Ok(self
.rpc_client
.teyrchain_host_candidate_pending_availability(at, para_id)
@@ -324,7 +325,10 @@ impl RuntimeApiSubsystemClient for BlockChainRpcClient {
.await?)
}
async fn current_epoch(&self, at: Hash) -> Result<pezsp_consensus_babe::Epoch, pezsp_api::ApiError> {
async fn current_epoch(
&self,
at: Hash,
) -> Result<pezsp_consensus_babe::Epoch, pezsp_api::ApiError> {
Ok(self.rpc_client.babe_api_current_epoch(at).await?)
}
@@ -335,7 +339,10 @@ impl RuntimeApiSubsystemClient for BlockChainRpcClient {
Ok(self.rpc_client.authority_discovery_authorities(at).await?)
}
async fn api_version_teyrchain_host(&self, at: Hash) -> Result<Option<u32>, pezsp_api::ApiError> {
async fn api_version_teyrchain_host(
&self,
at: Hash,
) -> Result<Option<u32>, pezsp_api::ApiError> {
let api_id = <dyn pezkuwi_primitives::runtime_api::TeyrchainHost<Block>>::ID;
Ok(self.rpc_client.runtime_version(at).await.map(|v| v.api_version(&api_id))?)
}
@@ -17,10 +17,10 @@
use collator_overseer::NewMinimalNode;
use network::build_collator_network;
use pezcumulus_client_bootnodes::bootnode_request_response_config;
use pezcumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayChainResult};
use pezcumulus_relay_chain_rpc_interface::{RelayChainRpcClient, RelayChainRpcInterface, Url};
use network::build_collator_network;
use pezkuwi_network_bridge::{peer_sets_info, IsAuthority};
use pezkuwi_node_network_protocol::{
peer_set::{PeerSet, PeerSetProtocolNames},
@@ -107,22 +107,22 @@ async fn build_interface(
)> {
let collator_pair = CollatorPair::generate().0;
let blockchain_rpc_client = Arc::new(BlockChainRpcClient::new(client.clone()));
let collator_node = match pezkuwi_config.network.network_backend {
pezsc_network::config::NetworkBackendType::Libp2p =>
new_minimal_relay_chain::<RelayBlock, pezsc_network::NetworkWorker<RelayBlock, RelayHash>>(
pezkuwi_config,
collator_pair.clone(),
blockchain_rpc_client,
)
.await?,
pezsc_network::config::NetworkBackendType::Litep2p =>
new_minimal_relay_chain::<RelayBlock, pezsc_network::Litep2pNetworkBackend>(
pezkuwi_config,
collator_pair.clone(),
blockchain_rpc_client,
)
.await?,
};
let collator_node =
match pezkuwi_config.network.network_backend {
pezsc_network::config::NetworkBackendType::Libp2p =>
new_minimal_relay_chain::<
RelayBlock,
pezsc_network::NetworkWorker<RelayBlock, RelayHash>,
>(pezkuwi_config, collator_pair.clone(), blockchain_rpc_client)
.await?,
pezsc_network::config::NetworkBackendType::Litep2p =>
new_minimal_relay_chain::<RelayBlock, pezsc_network::Litep2pNetworkBackend>(
pezkuwi_config,
collator_pair.clone(),
blockchain_rpc_client,
)
.await?,
};
task_manager.add_child(collator_node.task_manager);
Ok((
Arc::new(RelayChainRpcInterface::new(client, collator_node.overseer_handle)),