Update store.rs

This commit is contained in:
Gav Wood 2016-02-26 21:38:05 +01:00
parent 3750a8964c
commit 52faf8164d

View File

@ -64,7 +64,8 @@ impl SecretStore {
/// new instance of Secret Store in default home directory
pub fn new() -> SecretStore {
let mut path = ::std::env::home_dir().expect("Failed to get home dir");
path.push("keystore");
path.push(".parity");
path.push("keys");
Self::new_in(&path)
}