Change default keystore dir

This commit is contained in:
Gustav Simonsson
2015-05-12 18:33:04 +02:00
parent 231fe04f03
commit e389585f1f
5 changed files with 6 additions and 6 deletions

View File

@ -181,7 +181,7 @@ func Decrypt(prv *ecdsa.PrivateKey, ct []byte) ([]byte, error) {
// Used only by block tests.
func ImportBlockTestKey(privKeyBytes []byte) error {
ks := NewKeyStorePassphrase(common.DefaultDataDir() + "/keys")
ks := NewKeyStorePassphrase(common.DefaultDataDir() + "/keystore")
ecKey := ToECDSA(privKeyBytes)
key := &Key{
Id: uuid.NewRandom(),