From 08806919f53b08f51d57aceb8b63108f0a37b903 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Tue, 07 Nov 2023 09:48:00 +0000 Subject: [PATCH] fix: remove orml tokens dep --- --- a/Cargo.toml +++ b/Cargo.toml @@ -199,7 +199,6 @@ try-runtime-cli = "0.35.0" # ORML -orml-tokens = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" } orml-traits = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" } orml-vesting = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" } orml-xcm-support = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" } --- a/pallets/foreign-assets/Cargo.toml +++ b/pallets/foreign-assets/Cargo.toml @@ -12,7 +12,6 @@ frame-support = { workspace = true } frame-system = { workspace = true } log = { workspace = true } -orml-tokens = { workspace = true } pallet-balances = { features = ["insecure_zero_ed"], workspace = true } pallet-common = { workspace = true } pallet-fungible = { workspace = true } @@ -30,7 +29,6 @@ "frame-support/std", "frame-system/std", "log/std", - "orml-tokens/std", "pallet-balances/std", "pallet-common/std", "pallet-fungible/std", --- a/runtime/opal/Cargo.toml +++ b/runtime/opal/Cargo.toml @@ -151,7 +151,6 @@ 'up-rpc/std', 'up-sponsorship/std', - "orml-tokens/std", "orml-traits/std", "orml-vesting/std", "orml-xcm-support/std", @@ -179,7 +178,6 @@ 'frame-system/try-runtime', 'frame-try-runtime', 'frame-try-runtime?/try-runtime', - 'orml-tokens/try-runtime', 'orml-vesting/try-runtime', 'orml-xtokens/try-runtime', 'pallet-app-promotion/try-runtime', @@ -254,7 +252,6 @@ frame-support = { workspace = true } frame-system = { workspace = true } frame-system-rpc-runtime-api = { workspace = true } -orml-tokens = { workspace = true } orml-traits = { workspace = true } orml-vesting = { workspace = true } orml-xcm-support = { workspace = true } --- a/runtime/quartz/Cargo.toml +++ b/runtime/quartz/Cargo.toml @@ -150,7 +150,6 @@ 'up-rpc/std', 'up-sponsorship/std', - "orml-tokens/std", "orml-traits/std", "orml-vesting/std", "orml-xcm-support/std", @@ -175,7 +174,6 @@ 'frame-support/try-runtime', 'frame-system/try-runtime', 'frame-try-runtime', - 'orml-tokens/try-runtime', 'orml-vesting/try-runtime', 'orml-xtokens/try-runtime', 'pallet-app-promotion/try-runtime', @@ -242,7 +240,6 @@ frame-support = { workspace = true } frame-system = { workspace = true } frame-system-rpc-runtime-api = { workspace = true } -orml-tokens = { workspace = true } orml-traits = { workspace = true } orml-vesting = { workspace = true } orml-xcm-support = { workspace = true } --- a/runtime/unique/Cargo.toml +++ b/runtime/unique/Cargo.toml @@ -147,7 +147,6 @@ 'up-rpc/std', 'up-sponsorship/std', - "orml-tokens/std", "orml-traits/std", "orml-vesting/std", "orml-xcm-support/std", @@ -173,7 +172,6 @@ 'frame-support/try-runtime', 'frame-system/try-runtime', 'frame-try-runtime', - 'orml-tokens/try-runtime', 'orml-vesting/try-runtime', 'orml-xtokens/try-runtime', 'pallet-app-promotion/try-runtime', @@ -245,7 +243,6 @@ frame-support = { workspace = true } frame-system = { workspace = true } frame-system-rpc-runtime-api = { workspace = true } -orml-tokens = { workspace = true } orml-traits = { workspace = true } orml-vesting = { workspace = true } orml-xcm-support = { workspace = true } -- gitstuff