Skip to content

Commit

Permalink
fix: use max assets properly
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshvarma committed Jan 10, 2024
1 parent 60c1e93 commit 0a6acaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/shibuya/src/xcm_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ use orml_xcm_support::DisabledParachainFee;
use astar_primitives::xcm::{
AbsoluteAndRelativeReserveProvider, AccountIdToMultiLocation, DescribeAllTerminal,
DescribeFamily, FixedRateOfForeignAsset, HashedDescription, ReserveAssetFilter,
XcmFungibleFeeHandler,
XcmFungibleFeeHandler, MAX_ASSETS,
};

parameter_types! {
Expand Down Expand Up @@ -141,7 +141,7 @@ parameter_types! {
// For the PoV size, we estimate 4 kB per instruction. This will be changed when we benchmark the instructions.
pub UnitWeightCost: Weight = Weight::from_parts(1_000_000_000, 4 * 1024);
pub const MaxInstructions: u32 = 100;
pub const MaxAssetsIntoHolding: u32 = 64;
pub const MaxAssetsIntoHolding: u32 = MAX_ASSETS;
}

match_types! {
Expand Down

0 comments on commit 0a6acaa

Please sign in to comment.