Refactoring Checkpoint: (WIP)
This commit is contained in:
@@ -25,7 +25,7 @@ futures-timer = { workspace = true }
|
||||
log = { workspace = true, default-features = true }
|
||||
|
||||
pezkuwi-cli = { workspace = true, default-features = true }
|
||||
pezkuwi-node-primitives = { workspace = true, default-features = true }
|
||||
pezkuwi-pez-node-primitives = { workspace = true, default-features = true }
|
||||
pezkuwi-node-subsystem = { workspace = true, default-features = true }
|
||||
pezkuwi-primitives = { workspace = true, default-features = true }
|
||||
pezkuwi-service = { features = [
|
||||
@@ -52,7 +52,7 @@ tokio = { features = ["macros"], workspace = true, default-features = true }
|
||||
runtime-benchmarks = [
|
||||
"pezkuwi-cli/runtime-benchmarks",
|
||||
"pezkuwi-node-core-pvf/runtime-benchmarks",
|
||||
"pezkuwi-node-primitives/runtime-benchmarks",
|
||||
"pezkuwi-pez-node-primitives/runtime-benchmarks",
|
||||
"pezkuwi-node-subsystem/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezkuwi-service/runtime-benchmarks",
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
use codec::{Decode, Encode};
|
||||
use futures::channel::oneshot;
|
||||
use futures_timer::Delay;
|
||||
use pezkuwi_node_primitives::{
|
||||
use pezkuwi_pez_node_primitives::{
|
||||
Collation, CollationResult, CollationSecondedSignal, CollatorFn, MaybeCompressedPoV, PoV,
|
||||
Statement,
|
||||
};
|
||||
@@ -225,7 +225,7 @@ impl Collator {
|
||||
hrmp_watermark: validation_data.relay_parent_number,
|
||||
};
|
||||
|
||||
let compressed_pov = pezkuwi_node_primitives::maybe_compress_pov(pov);
|
||||
let compressed_pov = pezkuwi_pez_node_primitives::maybe_compress_pov(pov);
|
||||
|
||||
let (result_sender, recv) = oneshot::channel::<CollationSecondedSignal>();
|
||||
let seconded_collations = seconded_collations.clone();
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
//! Collator for the adder test teyrchain.
|
||||
|
||||
use pezkuwi_cli::{Error, Result};
|
||||
use pezkuwi_node_primitives::CollationGenerationConfig;
|
||||
use pezkuwi_pez_node_primitives::CollationGenerationConfig;
|
||||
use pezkuwi_node_subsystem::messages::{CollationGenerationMessage, CollatorProtocolMessage};
|
||||
use pezkuwi_primitives::Id as ParaId;
|
||||
use pezsc_cli::{Error as BizinikiwiCliError, BizinikiwiCli};
|
||||
|
||||
@@ -26,7 +26,7 @@ log = { workspace = true, default-features = true }
|
||||
|
||||
pezkuwi-cli = { workspace = true, default-features = true }
|
||||
pezkuwi-erasure-coding = { workspace = true, default-features = true }
|
||||
pezkuwi-node-primitives = { workspace = true, default-features = true }
|
||||
pezkuwi-pez-node-primitives = { workspace = true, default-features = true }
|
||||
pezkuwi-node-subsystem = { workspace = true, default-features = true }
|
||||
pezkuwi-primitives = { workspace = true, default-features = true }
|
||||
pezkuwi-service = { features = [
|
||||
@@ -55,7 +55,7 @@ runtime-benchmarks = [
|
||||
"pezkuwi-cli/runtime-benchmarks",
|
||||
"pezkuwi-erasure-coding/runtime-benchmarks",
|
||||
"pezkuwi-node-core-pvf/runtime-benchmarks",
|
||||
"pezkuwi-node-primitives/runtime-benchmarks",
|
||||
"pezkuwi-pez-node-primitives/runtime-benchmarks",
|
||||
"pezkuwi-node-subsystem/runtime-benchmarks",
|
||||
"pezkuwi-primitives/runtime-benchmarks",
|
||||
"pezkuwi-service/runtime-benchmarks",
|
||||
|
||||
@@ -20,7 +20,7 @@ use codec::{Decode, Encode};
|
||||
use futures::{channel::oneshot, StreamExt};
|
||||
use futures_timer::Delay;
|
||||
use pezkuwi_cli::ProvideRuntimeApi;
|
||||
use pezkuwi_node_primitives::{
|
||||
use pezkuwi_pez_node_primitives::{
|
||||
maybe_compress_pov, AvailableData, Collation, CollationResult, CollationSecondedSignal,
|
||||
CollatorFn, MaybeCompressedPoV, PoV, Statement, UpwardMessages,
|
||||
};
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
//! Collator for the `Undying` test teyrchain.
|
||||
|
||||
use pezkuwi_cli::{Error, Result};
|
||||
use pezkuwi_node_primitives::CollationGenerationConfig;
|
||||
use pezkuwi_pez_node_primitives::CollationGenerationConfig;
|
||||
use pezkuwi_node_subsystem::messages::{CollationGenerationMessage, CollatorProtocolMessage};
|
||||
use pezkuwi_primitives::Id as ParaId;
|
||||
use pezsc_cli::{Error as BizinikiwiCliError, BizinikiwiCli};
|
||||
|
||||
Reference in New Issue
Block a user