mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 07:01:03 +00:00
[Fix] Deposit weight hardcoded to pre-bench value (#1651)
* [Fix] Deposit weight hardcoded to pre-bench value * lint
This commit is contained in:
@@ -117,7 +117,10 @@ impl<Call> XcmWeightInfo<Call> for StatemineXcmWeight<Call> {
|
|||||||
_max_assets: &u32,
|
_max_assets: &u32,
|
||||||
_dest: &MultiLocation,
|
_dest: &MultiLocation,
|
||||||
) -> XCMWeight {
|
) -> XCMWeight {
|
||||||
assets.weigh_multi_assets(XcmFungibleWeight::<Runtime>::deposit_asset())
|
// Hardcoded till the XCM pallet is fixed
|
||||||
|
let hardcoded_weight = Weight::from_ref_time(1_000_000_000 as u64).ref_time();
|
||||||
|
let weight = assets.weigh_multi_assets(XcmFungibleWeight::<Runtime>::deposit_asset());
|
||||||
|
cmp::min(hardcoded_weight, weight)
|
||||||
}
|
}
|
||||||
fn deposit_reserve_asset(
|
fn deposit_reserve_asset(
|
||||||
assets: &MultiAssetFilter,
|
assets: &MultiAssetFilter,
|
||||||
|
|||||||
@@ -117,7 +117,10 @@ impl<Call> XcmWeightInfo<Call> for StatemintXcmWeight<Call> {
|
|||||||
_max_assets: &u32,
|
_max_assets: &u32,
|
||||||
_dest: &MultiLocation,
|
_dest: &MultiLocation,
|
||||||
) -> XCMWeight {
|
) -> XCMWeight {
|
||||||
assets.weigh_multi_assets(XcmFungibleWeight::<Runtime>::deposit_asset())
|
// Hardcoded till the XCM pallet is fixed
|
||||||
|
let hardcoded_weight = Weight::from_ref_time(1_000_000_000 as u64).ref_time();
|
||||||
|
let weight = assets.weigh_multi_assets(XcmFungibleWeight::<Runtime>::deposit_asset());
|
||||||
|
cmp::min(hardcoded_weight, weight)
|
||||||
}
|
}
|
||||||
fn deposit_reserve_asset(
|
fn deposit_reserve_asset(
|
||||||
assets: &MultiAssetFilter,
|
assets: &MultiAssetFilter,
|
||||||
|
|||||||
@@ -117,7 +117,10 @@ impl<Call> XcmWeightInfo<Call> for WestmintXcmWeight<Call> {
|
|||||||
_max_assets: &u32,
|
_max_assets: &u32,
|
||||||
_dest: &MultiLocation,
|
_dest: &MultiLocation,
|
||||||
) -> XCMWeight {
|
) -> XCMWeight {
|
||||||
assets.weigh_multi_assets(XcmFungibleWeight::<Runtime>::deposit_asset())
|
// Hardcoded till the XCM pallet is fixed
|
||||||
|
let hardcoded_weight = Weight::from_ref_time(1_000_000_000 as u64).ref_time();
|
||||||
|
let weight = assets.weigh_multi_assets(XcmFungibleWeight::<Runtime>::deposit_asset());
|
||||||
|
cmp::min(hardcoded_weight, weight)
|
||||||
}
|
}
|
||||||
fn deposit_reserve_asset(
|
fn deposit_reserve_asset(
|
||||||
assets: &MultiAssetFilter,
|
assets: &MultiAssetFilter,
|
||||||
|
|||||||
Reference in New Issue
Block a user