diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-18 07:12:51 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-18 07:12:51 +0800 |
commit | e6fdf0c9f7564b8b08cf428e03af66fc423adcc1 (patch) | |
tree | 14fafd42083a9a5d57005b614740294ae0525bef /core/execution.go | |
parent | 52b54631a47dfa46742635be178f2f8d33dd9f41 (diff) | |
parent | 4dbdcaecb117d7e1fcaf0869f5d4602312552991 (diff) | |
download | go-tangerine-e6fdf0c9f7564b8b08cf428e03af66fc423adcc1.tar.gz go-tangerine-e6fdf0c9f7564b8b08cf428e03af66fc423adcc1.tar.zst go-tangerine-e6fdf0c9f7564b8b08cf428e03af66fc423adcc1.zip |
Merge branch 'develop' into poc8
Diffstat (limited to 'core/execution.go')
-rw-r--r-- | core/execution.go | 34 |
1 files changed, 14 insertions, 20 deletions
diff --git a/core/execution.go b/core/execution.go index a464abc66..827e1ee0e 100644 --- a/core/execution.go +++ b/core/execution.go @@ -4,7 +4,6 @@ import ( "fmt" "math/big" - "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/state" "github.com/ethereum/go-ethereum/vm" ) @@ -36,38 +35,33 @@ func (self *Execution) exec(code, contextAddr []byte, caller vm.ClosureRef) (ret env := self.vm.Env() chainlogger.Debugf("pre state %x\n", env.State().Root()) + if self.vm.Env().Depth() == vm.MaxCallDepth { + // Consume all gas (by not returning it) and return a depth error + return nil, vm.DepthError{} + } + from, to := env.State().GetStateObject(caller.Address()), env.State().GetOrNewStateObject(self.address) // Skipping transfer is used on testing for the initial call if !self.SkipTransfer { err = env.Transfer(from, to, self.value) + if err != nil { + caller.ReturnGas(self.Gas, self.price) + + err = fmt.Errorf("Insufficient funds to transfer value. Req %v, has %v", self.value, from.Balance) + return + } } snapshot := env.State().Copy() defer func() { - if vm.IsDepthErr(err) || vm.IsOOGErr(err) { + if /*vm.IsDepthErr(err) ||*/ vm.IsOOGErr(err) { env.State().Set(snapshot) } chainlogger.Debugf("post state %x\n", env.State().Root()) }() - if err != nil { - caller.ReturnGas(self.Gas, self.price) - - err = fmt.Errorf("Insufficient funds to transfer value. Req %v, has %v", self.value, from.Balance) - } else { - self.object = to - // Pre-compiled contracts (address.go) 1, 2 & 3. - naddr := ethutil.BigD(contextAddr).Uint64() - if p := vm.Precompiled[naddr]; p != nil { - if self.Gas.Cmp(p.Gas(len(self.input))) >= 0 { - ret = p.Call(self.input) - self.vm.Printf("NATIVE_FUNC(%x) => %x", naddr, ret) - self.vm.Endl() - } - } else { - ret, err = self.vm.Run(to, caller, code, self.value, self.Gas, self.price, self.input) - } - } + self.object = to + ret, err = self.vm.Run(to, caller, code, self.value, self.Gas, self.price, self.input) return } |