From 551e0d63cb848b7ee0a2a2a8c068c85fa1801b34 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Tue, 21 Feb 2023 17:31:08 +0000 Subject: [PATCH] fix(unique): enable app-promotion rpc --- --- a/node/rpc/src/lib.rs +++ b/node/rpc/src/lib.rs @@ -173,7 +173,6 @@ }; use uc_rpc::{UniqueApiServer, Unique}; - #[cfg(not(feature = "unique-runtime"))] use uc_rpc::{AppPromotionApiServer, AppPromotion}; #[cfg(feature = "pov-estimate")] @@ -245,7 +244,6 @@ io.merge(Unique::new(client.clone()).into_rpc())?; - #[cfg(not(feature = "unique-runtime"))] io.merge(AppPromotion::new(client.clone()).into_rpc())?; #[cfg(feature = "pov-estimate")] -- gitstuff