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
@@ -134,9 +134,9 @@ where
#[cfg(test)]
mod test {
use bizinikiwi_test_runtime_client;
use pezsp_core::{hash::H256, sr25519, Pair};
use pezsp_runtime::testing::{Digest as DigestTest, Header as HeaderTest};
use bizinikiwi_test_runtime_client;
use super::{check_equivocation, MAX_SLOT_CAPACITY, PRUNING_BOUND};
+6 -3
View File
@@ -36,7 +36,9 @@ use futures::{future::Either, Future, TryFutureExt};
use futures_timer::Delay;
use log::{debug, info, warn};
use pezsc_consensus::{BlockImport, JustificationSyncLink};
use pezsc_telemetry::{telemetry, TelemetryHandle, CONSENSUS_DEBUG, CONSENSUS_INFO, CONSENSUS_WARN};
use pezsc_telemetry::{
telemetry, TelemetryHandle, CONSENSUS_DEBUG, CONSENSUS_INFO, CONSENSUS_WARN,
};
use pezsp_arithmetic::traits::BaseArithmetic;
use pezsp_consensus::{Proposal, Proposer, SelectChain, SyncOracle};
use pezsp_consensus_slots::{Slot, SlotDuration};
@@ -469,7 +471,8 @@ impl<T: SimpleSlotWorker<B> + Send + Sync, B: BlockT>
/// Slot specific extension that the inherent data provider needs to implement.
pub trait InherentDataProviderExt {
/// The current slot that will be found in the [`InherentData`](`pezsp_inherents::InherentData`).
/// The current slot that will be found in the
/// [`InherentData`](`pezsp_inherents::InherentData`).
fn slot(&self) -> Slot;
}
@@ -809,9 +812,9 @@ impl<N> BackoffAuthoringBlocksStrategy<N> for () {
#[cfg(test)]
mod test {
use super::*;
use bizinikiwi_test_runtime_client::runtime::{Block, Header};
use pezsp_runtime::traits::NumberFor;
use std::time::{Duration, Instant};
use bizinikiwi_test_runtime_client::runtime::{Block, Header};
const SLOT_DURATION: Duration = Duration::from_millis(6000);