From 4fa361c9886ef59d40bc67de240166723e5dd240 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Thu, 17 Nov 2016 08:29:28 +0800 Subject: [PATCH] Wallet names shouldn't include uuid. Fixes #3368 --- ethstore/src/ethstore.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethstore/src/ethstore.rs b/ethstore/src/ethstore.rs index 4360a39f0..4991c4714 100644 --- a/ethstore/src/ethstore.rs +++ b/ethstore/src/ethstore.rs @@ -86,7 +86,7 @@ impl SecretStore for EthStore { fn insert_account(&self, secret: Secret, password: &str) -> Result { 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)