diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-27 22:56:45 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-27 22:56:45 +0800 |
commit | 79009ca074d77561c655b65254103b4070b74c69 (patch) | |
tree | 72c4a340800a216d788421b9a95da276a8b9579d /ethchain/vm_test.go | |
parent | 423beddf574383ec58246938f738f08cd50f031a (diff) | |
download | dexon-79009ca074d77561c655b65254103b4070b74c69.tar dexon-79009ca074d77561c655b65254103b4070b74c69.tar.gz dexon-79009ca074d77561c655b65254103b4070b74c69.tar.bz2 dexon-79009ca074d77561c655b65254103b4070b74c69.tar.lz dexon-79009ca074d77561c655b65254103b4070b74c69.tar.xz dexon-79009ca074d77561c655b65254103b4070b74c69.tar.zst dexon-79009ca074d77561c655b65254103b4070b74c69.zip |
transitional ethutil.ReadConfig fixes in ethchain tests (they still fail! FIXME :)
Diffstat (limited to 'ethchain/vm_test.go')
-rw-r--r-- | ethchain/vm_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/vm_test.go b/ethchain/vm_test.go index 518a88766..c569d89ae 100644 --- a/ethchain/vm_test.go +++ b/ethchain/vm_test.go @@ -12,7 +12,7 @@ import ( ) func TestRun4(t *testing.T) { - ethutil.ReadConfig("", ethutil.LogStd, "") + ethutil.ReadConfig(".ethtest", "/tmp/ethtest", "", "ETH") db, _ := ethdb.NewMemDatabase() state := NewState(ethutil.NewTrie(db, "")) |