From 9deeab97c27676490bbbf036784b159c34ca1e83 Mon Sep 17 00:00:00 2001 From: lemunozm Date: Fri, 5 Apr 2024 11:43:48 +0200 Subject: [PATCH] correct features for dev dependency --- pallets/token-mux/Cargo.toml | 2 +- runtime/common/src/oracle.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pallets/token-mux/Cargo.toml b/pallets/token-mux/Cargo.toml index a18ecdf0d7..f49fdabc74 100644 --- a/pallets/token-mux/Cargo.toml +++ b/pallets/token-mux/Cargo.toml @@ -35,7 +35,7 @@ frame-benchmarking = { workspace = true, optional = true } cfg-mocks = { workspace = true, default-features = true } cfg-test-utils = { workspace = true, default-features = true } orml-tokens = { workspace = true, default-features = true } -pallet-restricted-tokens = { workspace = true, default-features = false } +pallet-restricted-tokens = { workspace = true, default-features = true } sp-io = { workspace = true, default-features = true } [features] diff --git a/runtime/common/src/oracle.rs b/runtime/common/src/oracle.rs index 5a2427cde8..03941cef71 100644 --- a/runtime/common/src/oracle.rs +++ b/runtime/common/src/oracle.rs @@ -34,7 +34,7 @@ impl> Feeder { } } -// There is an issue with clippy that detect this as an error: +// There is an issue with clippy in rust-1.78 that detect this as an error: // https://github.com/rust-lang/rust-clippy/issues/12245 #[allow(clippy::unconditional_recursion)] impl PartialEq for Feeder {