Various small v0.2 improvements (#367)

* Make telemetry less susceptible to flakey wifi

* Update readme

* Staging shouldn't autoconnect to telemetry

* Don't try to output more than 1KB of hex to Display

* Better logging of transactions

* Grumbles

* off-by-one
This commit is contained in:
Gav Wood
2018-07-19 12:08:34 +02:00
committed by GitHub
parent 6b6820e173
commit bba7ea3415
2 changed files with 13 additions and 4 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ fn load_spec(matches: &clap::ArgMatches) -> Result<(service::ChainSpec, bool), S
.map(ChainSpec::from)
.unwrap_or_else(|| if matches.is_present("dev") { ChainSpec::Development } else { ChainSpec::KrummeLanke });
let is_global = match chain_spec {
ChainSpec::KrummeLanke | ChainSpec::StagingTestnet => true,
ChainSpec::KrummeLanke => true,
_ => false,
};
let spec = chain_spec.load()?;