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
@@ -26,7 +26,6 @@ use crate::{
use async_trait::async_trait;
use codec::Encode;
use futures::future::{Future, FutureExt};
use prometheus_endpoint::Registry as PrometheusRegistry;
use pezsc_client_api::{blockchain::HeaderBackend, BlockBackend};
use pezsp_api::{ApiExt, ProvideRuntimeApi};
use pezsp_blockchain::{HeaderMetadata, TreeRoute};
@@ -37,6 +36,7 @@ use pezsp_runtime::{
transaction_validity::{TransactionSource, TransactionValidity},
};
use pezsp_transaction_pool::runtime_api::TaggedTransactionQueue;
use prometheus_endpoint::Registry as PrometheusRegistry;
use std::{
marker::PhantomData,
pin::Pin,
@@ -190,11 +190,11 @@ where
#[cfg(test)]
mod enactment_state_tests {
use super::{EnactmentAction, EnactmentState};
use bizinikiwi_test_runtime_client::runtime::{Block, Hash};
use pezsc_transaction_pool_api::ChainEvent;
use pezsp_blockchain::{HashAndNumber, TreeRoute};
use pezsp_runtime::traits::NumberFor;
use std::sync::Arc;
use bizinikiwi_test_runtime_client::runtime::{Block, Hash};
// some helpers for convenient blocks' hash naming
fn a() -> HashAndNumber<Block> {
@@ -23,6 +23,10 @@ use crate::{
ValidateTransactionPriority,
};
use async_trait::async_trait;
use bizinikiwi_test_runtime::{
bizinikiwi_test_pallet::pezpallet::Call as PalletCall, BalancesCall, Block, BlockNumber,
Extrinsic, ExtrinsicBuilder, Hashing, RuntimeCall, Transfer, TransferData, H256,
};
use codec::Encode;
use parking_lot::Mutex;
use pezsc_transaction_pool_api::error;
@@ -35,10 +39,6 @@ use pezsp_runtime::{
},
};
use std::{collections::HashSet, sync::Arc};
use bizinikiwi_test_runtime::{
bizinikiwi_test_pallet::pezpallet::Call as PalletCall, BalancesCall, Block, BlockNumber, Extrinsic,
ExtrinsicBuilder, Hashing, RuntimeCall, Transfer, TransferData, H256,
};
type Pool<Api> = crate::graph::Pool<Api, ()>;