Merge branch 'master' into clippy-dev

Conflicts:
	Cargo.toml
This commit is contained in:
Nikolay Volf
2016-03-10 02:45:53 +04:00
7 changed files with 206 additions and 67 deletions

View File

@@ -87,6 +87,8 @@ pub struct ClientConfig {
pub blockchain: BlockChainConfig,
/// Prefer journal rather than archive.
pub prefer_journal: bool,
/// The name of the client instance.
pub name: String,
}
impl Default for ClientConfig {
@@ -95,6 +97,7 @@ impl Default for ClientConfig {
queue: Default::default(),
blockchain: Default::default(),
prefer_journal: false,
name: Default::default(),
}
}
}