Skip to content
Merged
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: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions runtime/asgard/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ polkadot-runtime-parachains = { git = "https://github.com/paritytech/polkadot",

# bifrost pallets
bifrost-runtime-common = { package = "bifrost-runtime-common", path = "../common", default-features = false }
bifrost-assets = { path = "../../pallets/assets", default-features = false }
bifrost-vtoken-mint = { path = "../../pallets/vtoken-mint", default-features = false }
bifrost-minter-reward = { path = "../../pallets/minter-reward", default-features = false }
bifrost-charge-transaction-fee = { path = "../../pallets/charge-transaction-fee", default-features = false }
Expand Down Expand Up @@ -158,7 +157,6 @@ std = [
"xcm-builder/std",
"xcm-executor/std",
"polkadot-runtime-parachains/std",
"bifrost-assets/std",
"bifrost-bancor/std",
"bifrost-bancor-runtime-api/std",
"bifrost-charge-transaction-fee/std",
Expand Down
7 changes: 0 additions & 7 deletions runtime/asgard/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -880,12 +880,6 @@ orml_traits::parameter_type_with_key! {
};
}

impl bifrost_assets::Config for Runtime {
type Event = Event;
type MultiCurrency = Currencies;
type WeightInfo = ();
}

impl orml_tokens::Config for Runtime {
type Amount = Amount;
type Balance = Balance;
Expand Down Expand Up @@ -1181,7 +1175,6 @@ construct_runtime! {
Currencies: orml_currencies::{Pallet, Call, Event<T>} = 72,

// Bifrost modules
BifrostAssets: bifrost_assets::{Pallet, Call, Event<T>} = 100,
VtokenMint: bifrost_vtoken_mint::{Pallet, Call, Storage, Event<T>, Config<T>} = 101,
MinterReward: bifrost_minter_reward::{Pallet, Storage, Event<T>, Config<T>} = 102,
ChargeTransactionFee: bifrost_charge_transaction_fee::{Pallet, Call, Storage, Event<T>} = 104,
Expand Down