diff options
author | Felix Lange <fjl@twurst.com> | 2015-05-14 23:51:05 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-05-14 23:51:05 +0800 |
commit | 559cc02313a869ece839205b336d637cfb486740 (patch) | |
tree | a9a9bc39aeef3d405bbe34db999b9bc61ad4da7b /cmd/geth/js_test.go | |
parent | 060a07cf69a2083611565e92cfa78d35c71cdb9f (diff) | |
download | dexon-559cc02313a869ece839205b336d637cfb486740.tar dexon-559cc02313a869ece839205b336d637cfb486740.tar.gz dexon-559cc02313a869ece839205b336d637cfb486740.tar.bz2 dexon-559cc02313a869ece839205b336d637cfb486740.tar.lz dexon-559cc02313a869ece839205b336d637cfb486740.tar.xz dexon-559cc02313a869ece839205b336d637cfb486740.tar.zst dexon-559cc02313a869ece839205b336d637cfb486740.zip |
cmd/geth: use plain keystore for JS tests
This reduces the time it takes to run the tests back to 3 seconds.
Diffstat (limited to 'cmd/geth/js_test.go')
-rw-r--r-- | cmd/geth/js_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/js_test.go b/cmd/geth/js_test.go index c2a0e2fe2..e02e8f704 100644 --- a/cmd/geth/js_test.go +++ b/cmd/geth/js_test.go @@ -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(ð.Config{ DataDir: tmp, |