Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Store morden db and keys in "path/to/parity/data/Morden" (ropsten use…
Browse files Browse the repository at this point in the history
…s "test", like before) (#8621)

* Store morden db and keys in "path/to/parity/data/morden" (ropsten uses "test", like before)
  • Loading branch information
dvdplm authored May 15, 2018
1 parent 8f56606 commit e4614e4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ node_modules
out/

.vscode

rls/
/parity.*
2 changes: 1 addition & 1 deletion ethcore/res/ethereum/morden.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Morden",
"dataDir": "test",
"dataDir": "morden",
"engine": {
"Ethash": {
"params": {
Expand Down
6 changes: 3 additions & 3 deletions util/dir/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ impl Directories {
DatabaseDirectories {
path: self.db.clone(),
legacy_path: self.base.clone(),
genesis_hash: genesis_hash,
fork_name: fork_name,
spec_name: spec_name,
genesis_hash,
fork_name,
spec_name,
}
}

Expand Down

0 comments on commit e4614e4

Please sign in to comment.