mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
16 lines
222 B
Go
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")
|
|
)
|