aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-05-14 23:51:05 +0800
committerFelix Lange <fjl@twurst.com>2015-05-14 23:51:05 +0800
commit559cc02313a869ece839205b336d637cfb486740 (patch)
treea9a9bc39aeef3d405bbe34db999b9bc61ad4da7b /cmd
parent060a07cf69a2083611565e92cfa78d35c71cdb9f (diff)
downloadgo-tangerine-559cc02313a869ece839205b336d637cfb486740.tar
go-tangerine-559cc02313a869ece839205b336d637cfb486740.tar.gz
go-tangerine-559cc02313a869ece839205b336d637cfb486740.tar.bz2
go-tangerine-559cc02313a869ece839205b336d637cfb486740.tar.lz
go-tangerine-559cc02313a869ece839205b336d637cfb486740.tar.xz
go-tangerine-559cc02313a869ece839205b336d637cfb486740.tar.zst
go-tangerine-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')
-rw-r--r--cmd/geth/js_test.go2
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(&eth.Config{
DataDir: tmp,