Skip to content
Snippets Groups Projects
Commit d61d710b authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

Use correct db path for parity-db (#9971)

This was overseen in: https://github.com/paritytech/substrate/pull/9500
parent 3fcc4d7e
No related merge requests found
......@@ -229,7 +229,7 @@ pub trait CliConfiguration<DCV: DefaultConfigurationValues = ()>: Sized {
let paritydb_path = base_path.join("paritydb").join(role_dir);
Ok(match database {
Database::RocksDb => DatabaseSource::RocksDb { path: rocksdb_path, cache_size },
Database::ParityDb => DatabaseSource::ParityDb { path: rocksdb_path },
Database::ParityDb => DatabaseSource::ParityDb { path: paritydb_path },
Database::Auto => DatabaseSource::Auto { paritydb_path, rocksdb_path, cache_size },
})
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment