Remove unneeded field.

This commit is contained in:
Gav Wood 2016-03-04 22:57:44 +01:00
parent 559e01ea84
commit 96617533c8

View File

@ -40,8 +40,6 @@ pub struct BlockChainConfig {
pub pref_cache_size: usize,
/// Maximum cache size in bytes.
pub max_cache_size: usize,
/// Prefer journal rather than archive.
pub prefer_journal: bool,
}
impl Default for BlockChainConfig {
@ -49,7 +47,6 @@ impl Default for BlockChainConfig {
BlockChainConfig {
pref_cache_size: 1 << 14,
max_cache_size: 1 << 20,
prefer_journal: false,
}
}
}