Moved ethvm => vm

This commit is contained in:
obscuren
2014-10-18 13:31:20 +02:00
parent a02dc4ccc3
commit 20c742e474
16 changed files with 24 additions and 23 deletions

10
vm/debugger.go Normal file
View File

@ -0,0 +1,10 @@
package vm
import "github.com/ethereum/eth-go/ethstate"
type Debugger interface {
BreakHook(step int, op OpCode, mem *Memory, stack *Stack, object *ethstate.StateObject) bool
StepHook(step int, op OpCode, mem *Memory, stack *Stack, object *ethstate.StateObject) bool
BreakPoints() []int64
SetCode(byteCode []byte)
}