aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-27 22:11:19 +0800
committerobscuren <geffobscura@gmail.com>2014-05-27 22:11:19 +0800
commit818cbcbdd41854eff7b4943039e10c1e609b240d (patch)
tree92bdc135c360cd1cd6710fd862ce4cb644507450 /ethchain
parentb1463b2dc23ebd072f5e1e2c9a74842fc7ff51db (diff)
parenta4285331601d9d77458d0d714dd110144c796023 (diff)
downloaddexon-818cbcbdd41854eff7b4943039e10c1e609b240d.tar
dexon-818cbcbdd41854eff7b4943039e10c1e609b240d.tar.gz
dexon-818cbcbdd41854eff7b4943039e10c1e609b240d.tar.bz2
dexon-818cbcbdd41854eff7b4943039e10c1e609b240d.tar.lz
dexon-818cbcbdd41854eff7b4943039e10c1e609b240d.tar.xz
dexon-818cbcbdd41854eff7b4943039e10c1e609b240d.tar.zst
dexon-818cbcbdd41854eff7b4943039e10c1e609b240d.zip
Merge branch 'release/poc5-rc10'
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/closure.go2
-rw-r--r--ethchain/state.go5
-rw-r--r--ethchain/vm.go4
3 files changed, 9 insertions, 2 deletions
diff --git a/ethchain/closure.go b/ethchain/closure.go
index 59194e4e8..c935ed50a 100644
--- a/ethchain/closure.go
+++ b/ethchain/closure.go
@@ -72,7 +72,7 @@ func (c *Closure) Address() []byte {
return c.object.Address()
}
-type DebugHook func(step int, op OpCode, mem *Memory, stack *Stack)
+type DebugHook func(step int, op OpCode, mem *Memory, stack *Stack, stateObject *StateObject) bool
func (c *Closure) Call(vm *Vm, args []byte, hook DebugHook) ([]byte, error) {
c.Args = args
diff --git a/ethchain/state.go b/ethchain/state.go
index e209e0e2f..5af748e00 100644
--- a/ethchain/state.go
+++ b/ethchain/state.go
@@ -49,6 +49,11 @@ func (s *State) Purge() int {
return s.trie.NewIterator().Purge()
}
+func (s *State) EachStorage(cb ethutil.EachCallback) {
+ it := s.trie.NewIterator()
+ it.Each(cb)
+}
+
func (s *State) GetStateObject(addr []byte) *StateObject {
data := s.trie.Get(string(addr))
if data == "" {
diff --git a/ethchain/vm.go b/ethchain/vm.go
index e025920f3..9821a839a 100644
--- a/ethchain/vm.go
+++ b/ethchain/vm.go
@@ -543,7 +543,9 @@ func (vm *Vm) RunClosure(closure *Closure, hook DebugHook) (ret []byte, err erro
pc.Add(pc, ethutil.Big1)
if hook != nil {
- hook(step-1, op, mem, stack)
+ if !hook(step-1, op, mem, stack, closure.Object()) {
+ return nil, nil
+ }
}
}
}