crypto: remove debug print call after decrypting a key from disk

This commit is contained in:
Felix Lange 2015-07-20 17:44:22 +02:00
parent 7662dd9bbb
commit 06d5898d6a
1 changed files with 0 additions and 1 deletions

View File

@ -147,7 +147,6 @@ func (ks keyStorePassphrase) DeleteKey(keyAddr common.Address, auth string) (err
}
func decryptKeyFromFile(keysDirPath string, keyAddr common.Address, auth string) (keyBytes []byte, keyId []byte, err error) {
fmt.Printf("%v\n", keyAddr.Hex())
m := make(map[string]interface{})
err = getKey(keysDirPath, keyAddr, &m)
if err != nil {