Fixed issue where JUMPI would do an equally check with 1 instead of GT

This commit is contained in:
obscuren
2014-06-17 18:05:46 +02:00
parent a90ffe1af1
commit 34c8045d5b
5 changed files with 49 additions and 36 deletions

View File

@ -120,6 +120,8 @@ func (self *State) GetOrNewStateObject(addr []byte) *StateObject {
}
func (self *State) NewStateObject(addr []byte) *StateObject {
ethutil.Config.Log.Printf(ethutil.LogLevelInfo, "(+) %x\n", addr)
stateObject := NewStateObject(addr)
self.stateObjects[string(addr)] = stateObject