mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-01 05:41:03 +00:00
Companion for Substrate#14373 (#7572)
* rename BEEFY `crypto` →`ecdsa_crypto`
* - bump up `BeefyApi` to version 3
- deal with `PeerId` error.
* update BEEFY dependency names for `fake-runtime` and `chain_spec`
revert Cargo.toml
* cargo fmt
* Use master Cargo.lock
* update lockfile for {"substrate"}
---------
Co-authored-by: Davide Galassi <davxy@datawok.net>
Co-authored-by: parity-processbot <>
This commit is contained in:
@@ -51,7 +51,7 @@ use runtime_parachains::{
|
||||
};
|
||||
|
||||
use authority_discovery_primitives::AuthorityId as AuthorityDiscoveryId;
|
||||
use beefy_primitives::crypto::{AuthorityId as BeefyId, Signature as BeefySignature};
|
||||
use beefy_primitives::ecdsa_crypto::{AuthorityId as BeefyId, Signature as BeefySignature};
|
||||
use frame_election_provider_support::{
|
||||
generate_solution_type, onchain, NposSolution, SequentialPhragmen,
|
||||
};
|
||||
@@ -1816,7 +1816,7 @@ sp_api::impl_runtime_apis! {
|
||||
}
|
||||
}
|
||||
|
||||
impl beefy_primitives::BeefyApi<Block> for Runtime {
|
||||
impl beefy_primitives::BeefyApi<Block, BeefyId> for Runtime {
|
||||
fn beefy_genesis() -> Option<BlockNumber> {
|
||||
// dummy implementation due to lack of BEEFY pallet.
|
||||
None
|
||||
|
||||
@@ -432,8 +432,10 @@ fn karura_liquid_staking_xcm_has_sane_weight_upper_limt() {
|
||||
|
||||
// should be [WithdrawAsset, BuyExecution, Transact, RefundSurplus, DepositAsset]
|
||||
let blob = hex_literal::hex!("02140004000000000700e40b540213000000000700e40b54020006010700c817a804341801000006010b00c490bf4302140d010003ffffffff000100411f");
|
||||
let Ok(VersionedXcm::V2(old_xcm)) =
|
||||
VersionedXcm::<super::RuntimeCall>::decode(&mut &blob[..]) else { panic!("can't decode XCM blob") };
|
||||
let Ok(VersionedXcm::V2(old_xcm)) = VersionedXcm::<super::RuntimeCall>::decode(&mut &blob[..])
|
||||
else {
|
||||
panic!("can't decode XCM blob")
|
||||
};
|
||||
let mut xcm: Xcm<super::RuntimeCall> =
|
||||
old_xcm.try_into().expect("conversion from v2 to v3 failed");
|
||||
let weight = <XcmConfig as xcm_executor::Config>::Weigher::weight(&mut xcm)
|
||||
@@ -444,9 +446,10 @@ fn karura_liquid_staking_xcm_has_sane_weight_upper_limt() {
|
||||
assert!(weight.all_lte(Weight::from_parts(30_313_281_000, 72_722)));
|
||||
|
||||
let Some(Transact { require_weight_at_most, call, .. }) =
|
||||
xcm.inner_mut().into_iter().find(|inst| matches!(inst, Transact { .. })) else {
|
||||
panic!("no Transact instruction found")
|
||||
};
|
||||
xcm.inner_mut().into_iter().find(|inst| matches!(inst, Transact { .. }))
|
||||
else {
|
||||
panic!("no Transact instruction found")
|
||||
};
|
||||
// should be pallet_utility.as_derivative { index: 0, call: pallet_staking::bond_extra { max_additional: 2490000000000 } }
|
||||
let message_call = call.take_decoded().expect("can't decode Transact call");
|
||||
let call_weight = message_call.get_dispatch_info().weight;
|
||||
|
||||
Reference in New Issue
Block a user