diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-24 01:27:06 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-24 01:27:06 +0800 |
commit | 90c710fd2687a0c9f3b3e4f5f3b9b69febc506e8 (patch) | |
tree | effeee4521ab0bb0dccc00ae5c3df15e6a3c55f5 /cmd | |
parent | e954c24af02802cdee0870230b6dcfc898dd07cd (diff) | |
parent | a983a215dc50240615cc1efe5199c72cefe037ed (diff) | |
download | go-tangerine-90c710fd2687a0c9f3b3e4f5f3b9b69febc506e8.tar.gz go-tangerine-90c710fd2687a0c9f3b3e4f5f3b9b69febc506e8.tar.zst go-tangerine-90c710fd2687a0c9f3b3e4f5f3b9b69febc506e8.zip |
Merge pull request #552 from ethersphere/jsonlog
Jsonlog
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ethtest/main.go | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cmd/ethtest/main.go b/cmd/ethtest/main.go index f5b423e8d..952ba1bd6 100644 --- a/cmd/ethtest/main.go +++ b/cmd/ethtest/main.go @@ -33,12 +33,12 @@ import ( "strings" "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/core/types" + "github.com/ethereum/go-ethereum/core/vm" "github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/logger" - "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/tests/helper" - "github.com/ethereum/go-ethereum/core/vm" ) type Log struct { @@ -80,8 +80,7 @@ func StateObjectFromAccount(db common.Database, addr string, account Account) *s } type VmTest struct { - Callcreates interface{} - //Env map[string]string + Callcreates interface{} Env Env Exec map[string]string Transaction map[string]string @@ -219,7 +218,7 @@ func RunVmTest(r io.Reader) (failed int) { } func main() { - //helper.Logger.SetLogLevel(5) + helper.Logger.SetLogLevel(5) vm.Debug = true if len(os.Args) > 1 { |