Clean errors

This commit is contained in:
Aditya Kulkarni
2019-09-08 21:17:54 -07:00
parent c08b51fde7
commit 3ff71f26b7
2 changed files with 8 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ impl LightClient {
// Make sure that if a wallet exists, there is no seed phrase being attempted
if !seed_phrase.is_none() {
return Err(io::Error::new(io::ErrorKind::AlreadyExists,
"Cannot restore from seed, because a wallet already exists"));
"Cannot create a new wallet from seed, because a wallet already exists"));
}
let mut file_buffer = BufReader::new(File::open("wallet.dat")?);