From 7d75626e75b81bc3347039af9169cbc9d10be405 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Thu, 18 Feb 2016 14:28:24 +0100 Subject: [PATCH] Fix options. --- parity/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parity/main.rs b/parity/main.rs index 50c9a78cb..077d92e54 100644 --- a/parity/main.rs +++ b/parity/main.rs @@ -58,7 +58,7 @@ Parity. Ethereum Client. Copyright 2015, 2016 Ethcore (UK) Limited Usage: - parity daemon [options] [ --no-bootstrap | ... ] + parity daemon [options] [ --no-bootstrap | ... ] parity [options] [ --no-bootstrap | ... ] Options: @@ -182,7 +182,7 @@ impl Configuration { if self.args.flag_no_bootstrap { Vec::new() } else { match self.args.arg_enode.len() { 0 => spec.nodes().clone(), - _ => self.args.arg_enode.clone(), + _ => self.args.arg_enode.clone(), // TODO check format first. } } }