github.com/status-im/status-go@v1.1.0/eth-node/keystore/keystore.go (about)

     1  // Imported from github.com/ethereum/go-ethereum/accounts/keystore/keystore.go
     2  
     3  package keystore
     4  
     5  import (
     6  	"errors"
     7  )
     8  
     9  const (
    10  	version = 3
    11  )
    12  
    13  var (
    14  	ErrDecrypt = errors.New("could not decrypt key with given password")
    15  )