Refactoring Checkpoint: (WIP)

This commit is contained in:
2025-12-14 10:29:31 +03:00
parent 09735eb97a
commit c89d7cac55
1424 changed files with 6415 additions and 6064 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ metered = { features = ["futures_channel"], workspace = true }
pezkuwi-erasure-coding = { workspace = true, default-features = true }
pezkuwi-node-metrics = { workspace = true, default-features = true }
pezkuwi-node-network-protocol = { 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-node-subsystem-types = { workspace = true, default-features = true }
pezkuwi-overseer = { workspace = true, default-features = true }
@@ -54,7 +54,7 @@ runtime-benchmarks = [
"pezkuwi-erasure-coding/runtime-benchmarks",
"pezkuwi-node-metrics/runtime-benchmarks",
"pezkuwi-node-network-protocol/runtime-benchmarks",
"pezkuwi-node-primitives/runtime-benchmarks",
"pezkuwi-pez-node-primitives/runtime-benchmarks",
"pezkuwi-node-subsystem-test-helpers/runtime-benchmarks",
"pezkuwi-node-subsystem-types/runtime-benchmarks",
"pezkuwi-node-subsystem/runtime-benchmarks",
@@ -16,7 +16,7 @@
//! Convenient interface to runtime information.
use pezkuwi_node_primitives::MAX_FINALITY_LAG;
use pezkuwi_pez_node_primitives::MAX_FINALITY_LAG;
use schnellru::{ByLength, LruMap};
use codec::Encode;
@@ -614,7 +614,7 @@ pub async fn fetch_validation_code_bomb_limit(
// TODO: Remove this once runtime API version 12 is released.
#[allow(deprecated)]
Ok(pezkuwi_node_primitives::VALIDATION_CODE_BOMB_LIMIT as u32)
Ok(pezkuwi_pez_node_primitives::VALIDATION_CODE_BOMB_LIMIT as u32)
} else {
res
}