GasLimit check updated

This commit is contained in:
obscuren
2015-03-03 17:05:51 +01:00
parent c74c07eed1
commit ee0a1bec6c
3 changed files with 17 additions and 6 deletions

View File

@ -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()
}