aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-04 00:05:51 +0800
committerobscuren <geffobscura@gmail.com>2015-03-04 00:05:51 +0800
commitee0a1bec6c3ce942e51265535961ac6a745d33eb (patch)
tree9d2181ca6dc3f7c107b2348cc6366c9296dd9bb2 /tests
parentc74c07eed19f8a328f47aca7b9e01dcdf8731847 (diff)
downloadgo-tangerine-ee0a1bec6c3ce942e51265535961ac6a745d33eb.tar
go-tangerine-ee0a1bec6c3ce942e51265535961ac6a745d33eb.tar.gz
go-tangerine-ee0a1bec6c3ce942e51265535961ac6a745d33eb.tar.bz2
go-tangerine-ee0a1bec6c3ce942e51265535961ac6a745d33eb.tar.lz
go-tangerine-ee0a1bec6c3ce942e51265535961ac6a745d33eb.tar.xz
go-tangerine-ee0a1bec6c3ce942e51265535961ac6a745d33eb.tar.zst
go-tangerine-ee0a1bec6c3ce942e51265535961ac6a745d33eb.zip
GasLimit check updated
Diffstat (limited to 'tests')
-rw-r--r--tests/vm/gh_test.go5
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()
}