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
Experiencing problems? Have you tried our Stack Exchange first?
This is not a support question.
Description of bug
The pallet has the asset id as an associated type of the OnChargeAssetTransaction trait, but it expects it to implement Copy. v3::Multilocation used to implement Copy so this was fine, but now v4::Location doesn't implement copy.
This means it's impossible to directly have Location as the AssetId, so we have to accept v3, and do some unnecessary internal conversions to v4 inside the withdraw_fee method
The text was updated successfully, but these errors were encountered:
Is there an existing issue?
Experiencing problems? Have you tried our Stack Exchange first?
Description of bug
The pallet has the asset id as an associated type of the
OnChargeAssetTransaction
trait, but it expects it to implementCopy
.v3::Multilocation
used to implement Copy so this was fine, but nowv4::Location
doesn't implement copy.This means it's impossible to directly have
Location
as the AssetId, so we have to accept v3, and do some unnecessary internal conversions to v4 inside thewithdraw_fee
methodThe text was updated successfully, but these errors were encountered: