Merge pull request #874 from ethcore/NikVolf-patch-1

update misleading cli help msg for author
This commit is contained in:
Gav Wood 2016-04-03 21:59:44 -04:00
commit 072a8e0105

View File

@ -338,7 +338,7 @@ impl Configuration {
fn author(&self) -> Address { fn author(&self) -> Address {
let d = self.args.flag_etherbase.as_ref().unwrap_or(&self.args.flag_author); let d = self.args.flag_etherbase.as_ref().unwrap_or(&self.args.flag_author);
Address::from_str(clean_0x(d)).unwrap_or_else(|_| { 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)
}) })
} }