forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
327 B
11 lines
327 B
10 years ago
|
package vm
|
||
10 years ago
|
|
||
10 years ago
|
import "github.com/ethereum/go-ethereum/ethstate"
|
||
10 years ago
|
|
||
|
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)
|
||
|
}
|