aboutsummaryrefslogtreecommitdiffstats
path: root/ethpipe/pipe.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-10-08 17:59:44 +0800
committerobscuren <geffobscura@gmail.com>2014-10-08 17:59:44 +0800
commitb417766b36f46316cbae6fa42815f1a519e5f733 (patch)
treeaba26c0aefdcda3c3cd4b3583b84a2b2ebcf1efd /ethpipe/pipe.go
parent0015ce1e353f52cca818d11f566b9a656fb85f24 (diff)
downloadgo-tangerine-b417766b36f46316cbae6fa42815f1a519e5f733.tar.gz
go-tangerine-b417766b36f46316cbae6fa42815f1a519e5f733.tar.zst
go-tangerine-b417766b36f46316cbae6fa42815f1a519e5f733.zip
Minor tweaks for poc7
Diffstat (limited to 'ethpipe/pipe.go')
-rw-r--r--ethpipe/pipe.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethpipe/pipe.go b/ethpipe/pipe.go
index f57b56ea0..1e1a2b835 100644
--- a/ethpipe/pipe.go
+++ b/ethpipe/pipe.go
@@ -61,7 +61,7 @@ func (self *Pipe) ExecuteObject(object *Object, data []byte, value, gas, price *
vm := ethvm.New(NewEnv(self.Vm.State, block, value.BigInt(), initiator.Address()))
vm.Verbose = true
- msg := ethvm.NewMessage(vm, object.Address(), data, gas.BigInt(), price.BigInt(), value.BigInt())
+ msg := ethvm.NewExecution(vm, object.Address(), data, gas.BigInt(), price.BigInt(), value.BigInt())
ret, err := msg.Exec(object.Address(), initiator)
fmt.Println("returned from call", ret, err)