From bf956bfa1577a69a48085ac3bf8f9d0f029f4064 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Tue, 13 Dec 2022 20:22:04 +0000 Subject: [PATCH] fix: app promotion rpc feature gate --- --- a/node/rpc/src/lib.rs +++ b/node/rpc/src/lib.rs @@ -176,7 +176,7 @@ }; use uc_rpc::{UniqueApiServer, Unique}; - #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))] + #[cfg(not(feature = "unique-runtime"))] use uc_rpc::{AppPromotionApiServer, AppPromotion}; #[cfg(not(feature = "unique-runtime"))] @@ -238,7 +238,7 @@ io.merge(Unique::new(client.clone()).into_rpc())?; - #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))] + #[cfg(not(feature = "unique-runtime"))] io.merge(AppPromotion::new(client.clone()).into_rpc())?; #[cfg(not(feature = "unique-runtime"))] -- gitstuff