2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-12 15:45:07 +00:00
2020-01-06 10:17:23 +01:00

16 lines
222 B
Go

// Imported from github.com/ethereum/go-ethereum/accounts/keystore/keystore.go
package keystore
import (
"errors"
)
const (
version = 3
)
var (
ErrDecrypt = errors.New("could not decrypt key with given password")
)