mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 05:06:43 +00:00
Update passphrase.go
This commit is contained in:
parent
c984d9086e
commit
de6ff36f36
1 changed files with 2 additions and 1 deletions
|
|
@ -273,7 +273,8 @@ func DecryptDataV3(cryptoJson CryptoJSON, auth string) ([]byte, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return plainText, err
|
||||
// Return plainText with nil error since decryption was successful
|
||||
return plainText, nil
|
||||
}
|
||||
|
||||
func decryptKeyV3(keyProtected *encryptedKeyJSONV3, auth string) (keyBytes []byte, keyId []byte, err error) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue