Skip to content

Commit 6bc8dec

Browse files
committed
Merge pull request #980 from fjl/geth-test-no-scrypt
cmd/geth: use plain keystore for JS tests
2 parents 060a07c + 559cc02 commit 6bc8dec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/geth/js_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func testJEthRE(t *testing.T) (string, *testjethre, *eth.Ethereum) {
6868
// set up mock genesis with balance on the testAddress
6969
core.GenesisData = []byte(testGenesis)
7070

71-
ks := crypto.NewKeyStorePassphrase(filepath.Join(tmp, "keystore"))
71+
ks := crypto.NewKeyStorePlain(filepath.Join(tmp, "keystore"))
7272
am := accounts.NewManager(ks)
7373
ethereum, err := eth.New(&eth.Config{
7474
DataDir: tmp,

0 commit comments

Comments
 (0)