basic commands

This commit is contained in:
Nikolay Volf
2016-03-09 17:11:15 +04:00
parent 3655354980
commit 6ad0ba8fe2
4 changed files with 56 additions and 0 deletions

View File

@@ -84,6 +84,7 @@ impl SecretStore {
let mut path = ::std::env::home_dir().expect("Failed to get home dir");
path.push(".parity");
path.push("keys");
::std::fs::create_dir_all(&path).expect("Should panic since it is critical to be able to access home dir");
Self::new_in(&path)
}