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

difftreelog

source

runtime/common/config/pallets/foreign_asset.rs255 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}