aboutsummaryrefslogtreecommitdiffstats
path: root/core/execution.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-24 18:49:30 +0800
committerobscuren <geffobscura@gmail.com>2015-03-24 18:49:30 +0800
commit576df064e5cd4bc027120791484cb8100646f284 (patch)
treeb16186ef4ceb0f7f52dbb4dc30ebce8c96d8cef3 /core/execution.go
parent4877e52c15e4aa606084919acdb0076b0ffaaab2 (diff)
downloadgo-tangerine-576df064e5cd4bc027120791484cb8100646f284.tar.gz
go-tangerine-576df064e5cd4bc027120791484cb8100646f284.tar.zst
go-tangerine-576df064e5cd4bc027120791484cb8100646f284.zip
Updated for PV59
* Value XFER are refunded back to the sender if the execution fails
Diffstat (limited to 'core/execution.go')
-rw-r--r--core/execution.go18
1 files changed, 8 insertions, 10 deletions
diff --git a/core/execution.go b/core/execution.go
index 92d932a9f..893b79dc7 100644
--- a/core/execution.go
+++ b/core/execution.go
@@ -5,9 +5,9 @@ import (
"time"
"github.com/ethereum/go-ethereum/common"
- "github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/vm"
+ "github.com/ethereum/go-ethereum/crypto"
)
type Execution struct {
@@ -29,6 +29,8 @@ func (self *Execution) Call(codeAddr common.Address, caller vm.ContextRef) ([]by
}
func (self *Execution) exec(contextAddr *common.Address, code []byte, caller vm.ContextRef) (ret []byte, err error) {
+ start := time.Now()
+
env := self.env
evm := vm.NewVm(env)
if env.Depth() == vm.MaxCallDepth {
@@ -37,7 +39,7 @@ func (self *Execution) exec(contextAddr *common.Address, code []byte, caller vm.
return nil, vm.DepthError{}
}
- vsnapshot := env.State().Copy()
+ snapshot := env.State().Copy()
if self.address == nil {
// Generate a new address
nonce := env.State().GetNonce(caller.Address())
@@ -49,21 +51,17 @@ func (self *Execution) exec(contextAddr *common.Address, code []byte, caller vm.
from, to := env.State().GetStateObject(caller.Address()), env.State().GetOrNewStateObject(*self.address)
err = env.Transfer(from, to, self.value)
if err != nil {
- env.State().Set(vsnapshot)
-
- caller.ReturnGas(self.Gas, self.price)
+ env.State().Set(snapshot)
+ //caller.ReturnGas(self.Gas, self.price)
return nil, ValueTransferErr("insufficient funds to transfer value. Req %v, has %v", self.value, from.Balance())
}
- snapshot := env.State().Copy()
- start := time.Now()
-
context := vm.NewContext(caller, to, self.value, self.Gas, self.price)
context.SetCallCode(contextAddr, code)
- ret, err = evm.Run(context, self.input) //self.value, self.Gas, self.price, self.input)
- chainlogger.Debugf("vm took %v\n", time.Since(start))
+ ret, err = evm.Run(context, self.input)
+ evm.Printf("message call took %v", time.Since(start)).Endl()
if err != nil {
env.State().Set(snapshot)
}