From df61b1b32885884bc5e37ebfbeb7004f668faea2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Wed, 21 Sep 2016 12:51:49 +0200 Subject: [PATCH] Fixing compilation without ui feature (#2207) --- parity/dapps.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/parity/dapps.rs b/parity/dapps.rs index 98a01c854..ca10cc447 100644 --- a/parity/dapps.rs +++ b/parity/dapps.rs @@ -19,11 +19,6 @@ use io::PanicHandler; use rpc_apis; use helpers::replace_home; -#[cfg(feature = "dapps")] -pub use ethcore_dapps::Server as WebappServer; -#[cfg(not(feature = "dapps"))] -pub struct WebappServer; - #[derive(Debug, PartialEq, Clone)] pub struct Configuration { pub enabled: bool, @@ -77,6 +72,7 @@ pub fn new(configuration: Configuration, deps: Dependencies) -> Result