Import account message

This commit is contained in:
arkpar 2016-11-21 15:03:20 +01:00
parent 21b2b4ac27
commit efdf017c43
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ fn import(i: ImportAccounts) -> Result<String, String> {
let from = DiskDirectory::at(path);
imported += try!(import_accounts(&from, &to).map_err(|_| "Importing accounts failed.")).len();
}
Ok(format!("{}", imported))
Ok(format!("{} account(s) imported", imported))
}
fn import_geth(i: ImportFromGethAccounts) -> Result<String, String> {