snapshot before rebranding

This commit is contained in:
2025-12-14 07:37:21 +03:00
parent 5520d491a5
commit 09735eb97a
1752 changed files with 58116 additions and 15986 deletions
@@ -20,9 +20,9 @@ use std::{
pin::Pin,
};
use cumulus_primitives_core::{InboundDownwardMessage, ParaId, PersistedValidationData};
use cumulus_relay_chain_interface::{RelayChainError, RelayChainResult};
use cumulus_relay_chain_rpc_interface::RelayChainRpcClient;
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};
@@ -216,7 +216,7 @@ impl RuntimeApiSubsystemClient for BlockChainRpcClient {
async fn candidate_pending_availability(
&self,
at: Hash,
para_id: cumulus_primitives_core::ParaId,
para_id: pezcumulus_primitives_core::ParaId,
) -> Result<Option<pezkuwi_primitives::CommittedCandidateReceiptV2<Hash>>, pezsp_api::ApiError> {
Ok(self
.rpc_client
@@ -455,7 +455,7 @@ impl RuntimeApiSubsystemClient for BlockChainRpcClient {
async fn candidates_pending_availability(
&self,
at: Hash,
para_id: cumulus_primitives_core::ParaId,
para_id: pezcumulus_primitives_core::ParaId,
) -> Result<Vec<pezkuwi_primitives::CommittedCandidateReceiptV2<Hash>>, pezsp_api::ApiError> {
Ok(self
.rpc_client
@@ -27,7 +27,7 @@ use pezsc_network::{request_responses::IncomingRequest, service::traits::Network
use pezsc_service::TaskManager;
use pezsc_utils::mpsc::tracing_unbounded;
use cumulus_relay_chain_interface::RelayChainError;
use pezcumulus_relay_chain_interface::RelayChainError;
use crate::BlockChainRpcClient;
@@ -17,9 +17,9 @@
use collator_overseer::NewMinimalNode;
use cumulus_client_bootnodes::bootnode_request_response_config;
use cumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayChainResult};
use cumulus_relay_chain_rpc_interface::{RelayChainRpcClient, RelayChainRpcInterface, Url};
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::{
@@ -143,7 +143,7 @@ pub async fn build_minimal_relay_chain_node_with_rpc(
Arc<dyn NetworkService>,
async_channel::Receiver<GenericIncomingRequest>,
)> {
let client = cumulus_relay_chain_rpc_interface::create_client_and_start_worker(
let client = pezcumulus_relay_chain_rpc_interface::create_client_and_start_worker(
relay_chain_url,
task_manager,
teyrchain_prometheus_registry,