Remove defunct memory_cache_bytes from test config

This commit is contained in:
Deirdre Connolly 2020-11-21 06:25:20 -05:00 committed by Deirdre Connolly
parent b96ca38d1c
commit d813603bac
1 changed files with 0 additions and 1 deletions

View File

@ -651,7 +651,6 @@ fn cached_sapling_test_config() -> Result<ZebradConfig> {
let mut config = persistent_test_config()?;
config.consensus.checkpoint_sync = true;
config.state.cache_dir = "/zebrad-cache".into();
config.state.memory_cache_bytes = 52428800;
Ok(config)
}