git.delta.rocks / unique-network / refs/commits / d59d4711fcdc

difftreelog

source

runtime/common/config/pallets/foreign_asset.rs267 Bsourcehistory
1use crate::{Runtime, Event, Balances};2use up_common::types::AccountId;34impl pallet_foreing_assets::Config for Runtime {5    type Event = Event;6    type Currency = Balances;7    type RegisterOrigin = frame_system::EnsureRoot<AccountId>;8    type WeightInfo = ();9}