fix(ci): resolve all quick-checks failures

- Remove missing cli crate from workspace members
- Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml
- Fix Rust import ordering with cargo fmt
- Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
This commit is contained in:
2026-01-04 17:21:57 +03:00
parent 933f08e282
commit 479010094e
574 changed files with 1465 additions and 2447 deletions
@@ -26,9 +26,9 @@ use crate::{
bridge_to_ethereum_config::InboundQueueV2Location, xcm_config::XcmConfig, RuntimeCall,
XcmRouter,
};
use codec::{Decode, DecodeWithMemTracking, Encode, MaxEncodedLen};
use pezbp_messages::LegacyLaneId;
use pezbp_relayers::RewardsAccountParams;
use codec::{Decode, DecodeWithMemTracking, Encode, MaxEncodedLen};
use pezframe_support::parameter_types;
use scale_info::TypeInfo;
use testnet_teyrchains_constants::zagros::{
@@ -22,9 +22,9 @@ use crate::{
EthereumOutboundQueue, EthereumOutboundQueueV2, EthereumSystem, EthereumSystemV2, MessageQueue,
Runtime, RuntimeEvent, TransactionByteFee,
};
use hex_literal::hex;
use pezbp_asset_hub_zagros::CreateForeignAssetDeposit;
use pezbridge_hub_common::AggregateMessageOrigin;
use hex_literal::hex;
use pezframe_support::{parameter_types, traits::Contains, weights::ConstantMultiplier};
use pezframe_system::EnsureRootWithSuccess;
use pezpallet_xcm::EnsureXcm;
@@ -83,8 +83,10 @@ parameter_types! {
pub type FromPezkuwichainBridgeHubMessagesProof<MI> =
FromBridgedChainMessagesProof<pezbp_bridge_hub_pezkuwichain::Hash, LaneIdOf<Runtime, MI>>;
/// Messages delivery proof for Pezkuwichain Bridge Hub -> Zagros Bridge Hub messages.
pub type ToPezkuwichainBridgeHubMessagesDeliveryProof<MI> =
FromBridgedChainMessagesDeliveryProof<pezbp_bridge_hub_pezkuwichain::Hash, LaneIdOf<Runtime, MI>>;
pub type ToPezkuwichainBridgeHubMessagesDeliveryProof<MI> = FromBridgedChainMessagesDeliveryProof<
pezbp_bridge_hub_pezkuwichain::Hash,
LaneIdOf<Runtime, MI>,
>;
/// Dispatches received XCM messages from other bridge
type FromPezkuwichainMessageBlobDispatcher = BridgeBlobDispatcher<
@@ -381,8 +383,8 @@ pub mod migration {
}
mod v1_wrong {
use pezbp_messages::{LaneState, MessageNonce, UnrewardedRelayer};
use codec::{Decode, Encode};
use pezbp_messages::{LaneState, MessageNonce, UnrewardedRelayer};
use pezbp_runtime::AccountIdOf;
use pezpallet_bridge_messages::BridgedChainOf;
use pezsp_std::collections::vec_deque::VecDeque;
@@ -1487,15 +1487,16 @@ mod tests {
).into();
{
let bh_indirect_payload = pezbp_bridge_hub_zagros::TransactionExtension::from_params(
VERSION.spec_version,
VERSION.transaction_version,
pezbp_runtime::TransactionEra::Immortal,
System::block_hash(BlockNumber::zero()),
10,
10,
(((), ()), ((), ())),
);
let bh_indirect_payload =
pezbp_bridge_hub_zagros::TransactionExtension::from_params(
VERSION.spec_version,
VERSION.transaction_version,
pezbp_runtime::TransactionEra::Immortal,
System::block_hash(BlockNumber::zero()),
10,
10,
(((), ()), ((), ())),
);
assert_eq!(payload.encode().split_last().unwrap().1, bh_indirect_payload.encode());
assert_eq!(
TxExtension::implicit(&payload).unwrap().encode().split_last().unwrap().1,