diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-10 06:19:20 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-10 06:19:20 +0800 |
commit | 29499900160cc2ee88968b74035f0a5c2d4c5af6 (patch) | |
tree | 1a592b5cd81e44b797d8db4e8be3c9922f12affa /ethchain | |
parent | d91357d00ca080c63d81570504e5c45fb15e3841 (diff) | |
download | dexon-29499900160cc2ee88968b74035f0a5c2d4c5af6.tar.gz dexon-29499900160cc2ee88968b74035f0a5c2d4c5af6.tar.zst dexon-29499900160cc2ee88968b74035f0a5c2d4c5af6.zip |
Added CALLSTATELESS
Diffstat (limited to 'ethchain')
-rw-r--r-- | ethchain/state_transition.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/state_transition.go b/ethchain/state_transition.go index 1c7eae675..c1180a641 100644 --- a/ethchain/state_transition.go +++ b/ethchain/state_transition.go @@ -283,7 +283,7 @@ func (self *StateTransition) Eval(msg *ethstate.Message, script []byte, context for e := vm.Queue().Front(); e != nil; e = e.Next() { msg := e.Value.(*ethvm.Message) - msg.Exec(transactor) + msg.Exec(msg.Addr(), transactor) } } |