Merge pull request #980 from fjl/geth-test-no-scrypt

cmd/geth: use plain keystore for JS tests
This commit is contained in:
Jeffrey Wilcke 2015-05-14 10:36:56 -07:00
commit 6bc8dec7ac
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ func testJEthRE(t *testing.T) (string, *testjethre, *eth.Ethereum) {
// set up mock genesis with balance on the testAddress
core.GenesisData = []byte(testGenesis)
ks := crypto.NewKeyStorePassphrase(filepath.Join(tmp, "keystore"))
ks := crypto.NewKeyStorePlain(filepath.Join(tmp, "keystore"))
am := accounts.NewManager(ks)
ethereum, err := eth.New(&eth.Config{
DataDir: tmp,