-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Conversation
let mut home = home(); | ||
home.push(".ethereum"); | ||
home | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it would be good to make a standalone module from it. in #4956 I moved util/src/path.rs → util/path/src/lib.rs
would be nice to merge these two together
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since both of those PRs are not merged yet I think it would be best to do it separately. Logged: #4972
path if path.starts_with("parity") => { | ||
let chain = path.split('-').nth(1).unwrap_or("ethereum"); | ||
let path = paths::parity(chain); | ||
Box::new(RootDiskDirectory::create(path)?) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is not really backwards compatible, is it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It works for parity
(loads mainnet), parity-testnet
is not really well defined currently, we can alias it to parity-kovan
if you think it would be better.
Dunno if this was intended but the meta data is the only thing that is stringified:
|
That's actually expected. We don't really parse |
Related #4824
Also adds documentation to
ethstore
and cleans up some outdated functions ofethstore
CLI.