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

fix kitchen sink #12991

Merged
merged 2 commits into from
Dec 21, 2022
Merged
Changes from 1 commit
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
4 changes: 1 addition & 3 deletions bin/node/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1489,6 +1489,7 @@ impl pallet_assets::Config<Instance2> for Runtime {
type RuntimeEvent = RuntimeEvent;
type Balance = u128;
type AssetId = u32;
type AssetIdParameter = u32;
type Currency = Balances;
type CreateOrigin = AsEnsureOriginWithArg<EnsureSigned<AccountId>>;
type ForceOrigin = EnsureRoot<AccountId>;
Expand Down Expand Up @@ -1574,9 +1575,6 @@ impl pallet_uniques::Config for Runtime {
type CollectionId = u32;
type ItemId = u32;
type Currency = Balances;
type CurrencyBalance = <Self as pallet_balances::Config>::Balance;
type Assets = Assets;
type AssetId = <Self as pallet_assets::Config<Instance1>>::AssetId;
type ForceOrigin = frame_system::EnsureRoot<AccountId>;
type CollectionDeposit = CollectionDeposit;
type ItemDeposit = ItemDeposit;
Expand Down