diff options
author | Bas van Kervel <bas@ethdev.com> | 2015-06-08 19:46:53 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-11 20:01:39 +0800 |
commit | 0a600a03eeb5a7928233e541f26c0c81c70929fe (patch) | |
tree | 775b0c099e913273c3f86bc0f7e939e0764d2309 /cmd | |
parent | 862117e4bdcc5d255fc85fc35e223eec10f0ac7b (diff) | |
download | dexon-0a600a03eeb5a7928233e541f26c0c81c70929fe.tar.gz dexon-0a600a03eeb5a7928233e541f26c0c81c70929fe.tar.zst dexon-0a600a03eeb5a7928233e541f26c0c81c70929fe.zip |
fixed unittest build problem
Diffstat (limited to 'cmd')
-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 e7285a38d..20bde01f3 100644 --- a/cmd/geth/js_test.go +++ b/cmd/geth/js_test.go @@ -105,7 +105,7 @@ func testJEthRE(t *testing.T) (string, *testjethre, *eth.Ethereum) { t.Errorf("Error creating DocServer: %v", err) } tf := &testjethre{ds: ds, stateDb: ethereum.ChainManager().State().Copy()} - repl := newJSRE(ethereum, assetPath, "", false, tf) + repl := newJSRE(ethereum, assetPath, "", "", false, tf) tf.jsre = repl return tmp, tf, ethereum } |