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
@@ -30,9 +30,6 @@ use crate::config::*;
use codec::{Decode, Encode};
use futures::{channel::oneshot, prelude::*, stream::FuturesUnordered, FutureExt};
use prometheus_endpoint::{
prometheus, register, Counter, Gauge, Histogram, HistogramOpts, PrometheusError, Registry, U64,
};
use pezsc_network::{
config::{NonReservedPeerMode, SetConfig},
error, multiaddr,
@@ -52,6 +49,9 @@ use pezsp_runtime::traits::Block as BlockT;
use pezsp_statement_store::{
Hash, NetworkPriority, Statement, StatementSource, StatementStore, SubmitResult,
};
use prometheus_endpoint::{
prometheus, register, Counter, Gauge, Histogram, HistogramOpts, PrometheusError, Registry, U64,
};
use std::{
collections::{hash_map::Entry, HashMap, HashSet},
iter,
@@ -797,7 +797,9 @@ mod tests {
unimplemented!()
}
async fn next_event(&mut self) -> Option<pezsc_network::service::traits::NotificationEvent> {
async fn next_event(
&mut self,
) -> Option<pezsc_network::service::traits::NotificationEvent> {
None
}
@@ -819,7 +821,8 @@ mod tests {
#[derive(Clone)]
struct TestStatementStore {
statements: Arc<Mutex<HashMap<pezsp_statement_store::Hash, pezsp_statement_store::Statement>>>,
statements:
Arc<Mutex<HashMap<pezsp_statement_store::Hash, pezsp_statement_store::Statement>>>,
recent_statements:
Arc<Mutex<HashMap<pezsp_statement_store::Hash, pezsp_statement_store::Statement>>>,
}