Skip to content

Commit

Permalink
fix: use correct type alias
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscoaguirre committed May 31, 2024
1 parent 141d66f commit 9ce695f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cumulus/parachains/runtimes/testing/penpal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ impl_runtime_apis! {

impl xcm_fee_payment_runtime_api::fees::XcmPaymentApi<Block> for Runtime {
fn query_acceptable_payment_assets(xcm_version: xcm::Version) -> Result<Vec<VersionedAssetId>, XcmPaymentApiError> {
let acceptable_assets = vec![AssetId(xcm_config::RelayLocation::get())];
let acceptable_assets = vec![AssetLocationId(xcm_config::RelayLocation::get())];
PolkadotXcm::query_acceptable_payment_assets(xcm_version, acceptable_assets)
}

Expand Down

0 comments on commit 9ce695f

Please sign in to comment.