diff options
author | obscuren <geffobscura@gmail.com> | 2014-06-18 00:05:46 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-06-18 00:05:46 +0800 |
commit | 34c8045d5be6488e9800c24e1e696e1b912f344c (patch) | |
tree | 322b1500e7e02b5fa5b2fab094605e433fdb6796 /ethchain/state.go | |
parent | a90ffe1af1b28935fc77a2c5cf37972bac03f062 (diff) | |
download | dexon-34c8045d5be6488e9800c24e1e696e1b912f344c.tar dexon-34c8045d5be6488e9800c24e1e696e1b912f344c.tar.gz dexon-34c8045d5be6488e9800c24e1e696e1b912f344c.tar.bz2 dexon-34c8045d5be6488e9800c24e1e696e1b912f344c.tar.lz dexon-34c8045d5be6488e9800c24e1e696e1b912f344c.tar.xz dexon-34c8045d5be6488e9800c24e1e696e1b912f344c.tar.zst dexon-34c8045d5be6488e9800c24e1e696e1b912f344c.zip |
Fixed issue where JUMPI would do an equally check with 1 instead of GT
Diffstat (limited to 'ethchain/state.go')
-rw-r--r-- | ethchain/state.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ethchain/state.go b/ethchain/state.go index 993f1fb08..616ab77e0 100644 --- a/ethchain/state.go +++ b/ethchain/state.go @@ -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 |