#305 Fixing unexpectedly high weights for XCM pallet (#322)

This commit is contained in:
Nikita Khateev
2024-10-08 16:36:54 +04:00
committed by GitHub
parent 6953c33181
commit 7d383119a3
6 changed files with 181 additions and 16 deletions
+2 -2
View File
@@ -323,8 +323,8 @@ impl pallet_assets::Config for Runtime {
type ApprovalDeposit = ApprovalDeposit;
type AssetAccountDeposit = AssetAccountDeposit;
type AssetDeposit = AssetDeposit;
type AssetId = u32;
type AssetIdParameter = parity_scale_codec::Compact<u32>;
type AssetId = crate::types::AssetId;
type AssetIdParameter = parity_scale_codec::Compact<crate::types::AssetId>;
type Balance = Balance;
#[cfg(feature = "runtime-benchmarks")]
type BenchmarkHelper = ();