Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Fee and tip represented as asset ID inside AssetTxFeePaid #2063

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions parachains/runtimes/assets/statemine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,7 @@ impl pallet_asset_tx_payment::Config for Runtime {
pallet_assets::BalanceToAssetBalance<Balances, Runtime, ConvertInto>,
AssetsToBlockAuthor<Runtime>,
>;
type BalanceToAsset = pallet_assets::BalanceToAssetBalance<Balances, Runtime, ConvertInto>;
}

parameter_types! {
Expand Down
1 change: 1 addition & 0 deletions parachains/runtimes/assets/statemint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,7 @@ impl pallet_asset_tx_payment::Config for Runtime {
pallet_assets::BalanceToAssetBalance<Balances, Runtime, ConvertInto>,
AssetsToBlockAuthor<Runtime>,
>;
type BalanceToAsset = pallet_assets::BalanceToAssetBalance<Balances, Runtime, ConvertInto>;
}

parameter_types! {
Expand Down
1 change: 1 addition & 0 deletions parachains/runtimes/assets/westmint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,7 @@ impl pallet_asset_tx_payment::Config for Runtime {
pallet_assets::BalanceToAssetBalance<Balances, Runtime, ConvertInto>,
AssetsToBlockAuthor<Runtime>,
>;
type BalanceToAsset = pallet_assets::BalanceToAssetBalance<Balances, Runtime, ConvertInto>;
}

parameter_types! {
Expand Down
1 change: 1 addition & 0 deletions parachains/runtimes/testing/penpal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ impl pallet_asset_tx_payment::Config for Runtime {
pallet_assets::BalanceToAssetBalance<Balances, Runtime, ConvertInto>,
AssetsToBlockAuthor<Runtime>,
>;
type BalanceToAsset = pallet_assets::BalanceToAssetBalance<Balances, Runtime, ConvertInto>;
}

impl pallet_sudo::Config for Runtime {
Expand Down