Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 9ee94fa

Browse files
committed
Use correct db path for parity-db (#9971)
This was overseen in: #9500
1 parent 70c3954 commit 9ee94fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/cli/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ pub trait CliConfiguration<DCV: DefaultConfigurationValues = ()>: Sized {
229229
let paritydb_path = base_path.join("paritydb").join(role_dir);
230230
Ok(match database {
231231
Database::RocksDb => DatabaseSource::RocksDb { path: rocksdb_path, cache_size },
232-
Database::ParityDb => DatabaseSource::ParityDb { path: rocksdb_path },
232+
Database::ParityDb => DatabaseSource::ParityDb { path: paritydb_path },
233233
Database::Auto => DatabaseSource::Auto { paritydb_path, rocksdb_path, cache_size },
234234
})
235235
}

0 commit comments

Comments
 (0)