You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, when I try to induce the PriceForSiblingParachainDelivery into our parachain, the related extrinsic in xtoken's pallet cannot work because of NotHoldingFees. I guess the reason is the design of the Xtokens isn't compatible with the concept of PriceForSiblingDelivery. Do I understand right? If so, do you have any suggestions about that?
pub type PriceForSiblingParachainDelivery =
ExponentialPrice<SelfReserveLocation, BaseDeliveryFee, TransactionByteFee, XcmpQueue>;
impl cumulus_pallet_xcmp_queue::Config for Runtime {
...
type PriceForSiblingDelivery = PriceForSiblingParachainDelivery;
...
}
The text was updated successfully, but these errors were encountered:
We kinda need XCM v5 with improved fee mechanism to make it work paritytech/polkadot-sdk#5420
Also I would like to put xtokens on maintenance mode and people should migrate to xcm-pallet for the use cases that xtokens doesn't support.
Hi, when I try to induce the PriceForSiblingParachainDelivery into our parachain, the related extrinsic in xtoken's pallet cannot work because of
NotHoldingFees
. I guess the reason is the design of the Xtokens isn't compatible with the concept of PriceForSiblingDelivery. Do I understand right? If so, do you have any suggestions about that?The text was updated successfully, but these errors were encountered: