mirror of https://github.com/status-im/op-geth.git
crypto: remove debug print call after decrypting a key from disk
This commit is contained in:
parent
7662dd9bbb
commit
06d5898d6a
|
@ -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 New Issue