Merge pull request #599 from ethcore/silent-geth

Geth import silent if no geth
This commit is contained in:
Gav Wood 2016-03-05 12:11:21 +01:00
commit 0768d556a9

View File

@ -105,7 +105,7 @@ impl SecretStore {
import_path.push(".ethereum"); import_path.push(".ethereum");
import_path.push("keystore"); import_path.push("keystore");
if let Err(e) = geth_import::import_geth_keys(self, &import_path) { if let Err(e) = geth_import::import_geth_keys(self, &import_path) {
warn!(target: "sstore", "Error retrieving geth keys: {:?}", e) trace!(target: "sstore", "Geth key not imported: {:?}", e);
} }
} }