aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-29 05:16:54 +0800
committerobscuren <geffobscura@gmail.com>2014-05-29 05:16:54 +0800
commit4d987624867fc02a079d8355c28bad620db85f06 (patch)
tree967b2e6b8241642af207667c5db7fab00701cd3b /ethchain
parent73a42d34a5a58a634fd778858287a55a6af7537e (diff)
downloadgo-tangerine-4d987624867fc02a079d8355c28bad620db85f06.tar
go-tangerine-4d987624867fc02a079d8355c28bad620db85f06.tar.gz
go-tangerine-4d987624867fc02a079d8355c28bad620db85f06.tar.bz2
go-tangerine-4d987624867fc02a079d8355c28bad620db85f06.tar.lz
go-tangerine-4d987624867fc02a079d8355c28bad620db85f06.tar.xz
go-tangerine-4d987624867fc02a079d8355c28bad620db85f06.tar.zst
go-tangerine-4d987624867fc02a079d8355c28bad620db85f06.zip
Fixed state object gas return
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/closure.go8
-rw-r--r--ethchain/vm.go12
2 files changed, 13 insertions, 7 deletions
diff --git a/ethchain/closure.go b/ethchain/closure.go
index 01fd5d794..5c9c3e47c 100644
--- a/ethchain/closure.go
+++ b/ethchain/closure.go
@@ -11,13 +11,13 @@ type ClosureRef interface {
ReturnGas(*big.Int, *big.Int, *State)
Address() []byte
GetMem(*big.Int) *ethutil.Value
- SetStore(*big.Int, *ethutil.Value)
+ SetStorage(*big.Int, *ethutil.Value)
N() *big.Int
}
// Basic inline closure object which implement the 'closure' interface
type Closure struct {
- callee *StateObject
+ callee ClosureRef
object *StateObject
Script []byte
State *State
@@ -28,7 +28,7 @@ type Closure struct {
}
// Create a new closure for the given data items
-func NewClosure(callee, object *StateObject, script []byte, state *State, gas, price *big.Int) *Closure {
+func NewClosure(callee ClosureRef, object *StateObject, script []byte, state *State, gas, price *big.Int) *Closure {
c := &Closure{callee: callee, object: object, Script: script, State: state, Args: nil}
// In most cases gas, price and value are pointers to transaction objects
@@ -118,7 +118,7 @@ func (c *Closure) Object() *StateObject {
return c.object
}
-func (c *Closure) Callee() *StateObject {
+func (c *Closure) Callee() ClosureRef {
return c.callee
}
diff --git a/ethchain/vm.go b/ethchain/vm.go
index 85136e435..9720d8be1 100644
--- a/ethchain/vm.go
+++ b/ethchain/vm.go
@@ -326,9 +326,15 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
case CALLDATALOAD:
require(1)
offset := stack.Pop().Int64()
- val := closure.Args[offset : offset+32]
- stack.Push(ethutil.BigD(val))
+ var data []byte
+ if len(closure.Args) >= int(offset+32) {
+ data = closure.Args[offset : offset+32]
+ } else {
+ data = []byte{0}
+ }
+
+ stack.Push(ethutil.BigD(data))
case CALLDATASIZE:
stack.Push(big.NewInt(int64(len(closure.Args))))
case GASPRICE:
@@ -498,7 +504,7 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
contract.AddAmount(value)
// Create a new callable closure
- closure := NewClosure(closure.Object(), contract, contract.script, vm.state, gas, closure.Price)
+ closure := NewClosure(closure, contract, contract.script, vm.state, gas, closure.Price)
// Executer the closure and get the return value (if any)
ret, _, err := closure.Call(vm, args, hook)
if err != nil {