diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-04 00:05:51 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-04 00:05:51 +0800 |
commit | ee0a1bec6c3ce942e51265535961ac6a745d33eb (patch) | |
tree | 9d2181ca6dc3f7c107b2348cc6366c9296dd9bb2 /tests/vm | |
parent | c74c07eed19f8a328f47aca7b9e01dcdf8731847 (diff) | |
download | go-tangerine-ee0a1bec6c3ce942e51265535961ac6a745d33eb.tar.gz go-tangerine-ee0a1bec6c3ce942e51265535961ac6a745d33eb.tar.zst go-tangerine-ee0a1bec6c3ce942e51265535961ac6a745d33eb.zip |
GasLimit check updated
Diffstat (limited to 'tests/vm')
-rw-r--r-- | tests/vm/gh_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index a3eb93616..e457991e5 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -79,6 +79,10 @@ func RunVmTest(p string, t *testing.T) { helper.CreateFileTests(t, p, &tests) for name, test := range tests { + helper.Logger.SetLogLevel(4) + if name != "CallEcrecover0_overlappingInputOutput" { + continue + } db, _ := ethdb.NewMemDatabase() statedb := state.New(nil, db) for addr, account := range test.Pre { @@ -177,6 +181,7 @@ func RunVmTest(p string, t *testing.T) { */ } } + //statedb.Trie().PrintRoot() } logger.Flush() } |