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
+1 -1
View File
@@ -16,13 +16,13 @@
//! Chain specifications for the test runtime.
use pezpallet_staking::Forcing;
use pezkuwi_primitives::{
node_features, AccountId, AssignmentId, NodeFeatures, SchedulerParams, ValidatorId,
MAX_CODE_SIZE, MAX_POV_SIZE,
};
use pezkuwi_service::chain_spec::Extensions;
use pezkuwi_test_runtime::BABE_GENESIS_EPOCH_CONFIG;
use pezpallet_staking::Forcing;
use pezsc_chain_spec::{ChainSpec, ChainType};
use pezsc_consensus_grandpa::AuthorityId as GrandpaId;
use pezsp_authority_discovery::AuthorityId as AuthorityDiscoveryId;
+8 -7
View File
@@ -22,9 +22,9 @@ pub mod chain_spec;
pub use chain_spec::*;
use futures::{future::Future, stream::StreamExt};
use pezkuwi_pez_node_primitives::{CollationGenerationConfig, CollatorFn};
use pezkuwi_node_subsystem::messages::{CollationGenerationMessage, CollatorProtocolMessage};
use pezkuwi_overseer::Handle;
use pezkuwi_pez_node_primitives::{CollationGenerationConfig, CollatorFn};
use pezkuwi_primitives::{Balance, CollatorPair, HeadData, Id as ParaId, ValidationCode};
use pezkuwi_runtime_common::BlockHashCount;
use pezkuwi_runtime_teyrchains::paras::{ParaGenesisArgs, ParaKind};
@@ -34,6 +34,9 @@ use pezkuwi_test_runtime::{
UncheckedExtrinsic, VERSION,
};
use bizinikiwi_test_client::{
BlockchainEventsExt, RpcHandlersExt, RpcTransactionError, RpcTransactionOutput,
};
use pezsc_chain_spec::ChainSpec;
use pezsc_client_api::BlockchainEvents;
use pezsc_network::{
@@ -60,9 +63,6 @@ use std::{
path::PathBuf,
sync::Arc,
};
use bizinikiwi_test_client::{
BlockchainEventsExt, RpcHandlersExt, RpcTransactionError, RpcTransactionOutput,
};
/// The client type being used by the test service.
pub type Client = FullClient;
@@ -477,11 +477,12 @@ pub fn construct_transfer_extrinsic(
dest: pezsp_keyring::Sr25519Keyring,
value: Balance,
) -> UncheckedExtrinsic {
let function =
pezkuwi_test_runtime::RuntimeCall::Balances(pezpallet_balances::Call::transfer_allow_death {
let function = pezkuwi_test_runtime::RuntimeCall::Balances(
pezpallet_balances::Call::transfer_allow_death {
dest: MultiSigner::from(dest.public()).into_account().into(),
value,
});
},
);
construct_extrinsic(client, function, origin, 0)
}