chore: regenerate umbrella crate, fix feature propagation
This commit is contained in:
@@ -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, ()>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user