From 8a867262ad41d3381e7ffadb26a17673ac390a87 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Thu, 23 Jun 2016 02:42:56 +0200 Subject: [PATCH] Build fix. --- parity/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parity/main.rs b/parity/main.rs index 17d941a5d..0b64d0644 100644 --- a/parity/main.rs +++ b/parity/main.rs @@ -199,7 +199,7 @@ fn execute_client(conf: Configuration, spec: Spec, client_config: ClientConfig) } // Display warning about using unlock with signer - if conf.args.flag_signer && conf.args.flag_unlock.is_some() { + if !conf.args.flag_signer_off && conf.args.flag_unlock.is_some() { warn!("Using Trusted Signer and --unlock is not recommended!"); warn!("NOTE that Signer will not ask you to confirm transactions from unlocked account."); }