Wallet names shouldn't include uuid.

Fixes #3368
This commit is contained in:
Gav Wood 2016-11-17 08:29:28 +08:00
parent 4a92668c56
commit 4fa361c988
No known key found for this signature in database
GPG Key ID: C49C1ACA1CC9B252
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ impl SecretStore for EthStore {
fn insert_account(&self, secret: Secret, password: &str) -> Result<Address, Error> {
let keypair = try!(KeyPair::from_secret(secret).map_err(|_| Error::CreationFailed));
let id: [u8; 16] = Random::random();
let account = SafeAccount::create(&keypair, id, password, self.iterations, UUID::from(id).into(), "{}".to_owned());
let account = SafeAccount::create(&keypair, id, password, self.iterations, "".to_owned(), "{}".to_owned());
let address = account.address.clone();
try!(self.save(account));
Ok(address)