mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-13 03:26:38 +00:00
crypto: remove debug print call after decrypting a key from disk
This commit is contained in:
parent
7662dd9bbb
commit
06d5898d6a
1 changed files with 0 additions and 1 deletions
|
|
@ -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) {
|
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{})
|
m := make(map[string]interface{})
|
||||||
err = getKey(keysDirPath, keyAddr, &m)
|
err = getKey(keysDirPath, keyAddr, &m)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue