From 167f61bef05b971824531ebd90b63e2df860d177 Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Mon, 4 Apr 2016 04:03:20 +0400 Subject: [PATCH] [ci skip] update misleading cli help msg for author --- parity/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parity/main.rs b/parity/main.rs index 69b3d4e79..c5e0dce54 100644 --- a/parity/main.rs +++ b/parity/main.rs @@ -338,7 +338,7 @@ impl Configuration { fn author(&self) -> Address { let d = self.args.flag_etherbase.as_ref().unwrap_or(&self.args.flag_author); Address::from_str(clean_0x(d)).unwrap_or_else(|_| { - die!("{}: Invalid address for --author. Must be 40 hex characters, without the 0x at the beginning.", d) + die!("{}: Invalid address for --author. Must be 40 hex characters, with or without the 0x at the beginning.", d) }) }