diff options
author | Felix Lange <fjl@twurst.com> | 2015-07-20 23:44:22 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-07-21 00:04:23 +0800 |
commit | 06d5898d6a0f1f99505e55454688dd67237a98f9 (patch) | |
tree | 92bd0fe22e35b6aa31a9778a2159052d41fed95a /crypto | |
parent | 7662dd9bbbe5ced9aee33a734a754e90fb73d376 (diff) | |
download | dexon-06d5898d6a0f1f99505e55454688dd67237a98f9.tar.gz dexon-06d5898d6a0f1f99505e55454688dd67237a98f9.tar.zst dexon-06d5898d6a0f1f99505e55454688dd67237a98f9.zip |
crypto: remove debug print call after decrypting a key from disk
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/key_store_passphrase.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/key_store_passphrase.go b/crypto/key_store_passphrase.go index 86b0b33c2..9700adce1 100644 --- a/crypto/key_store_passphrase.go +++ b/crypto/key_store_passphrase.go @@ -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 { |