neoneo-go/pkg/vm/state.go

13 lines
197 B
Go
Raw Normal View History

package vm
//Vmstate represents all possible states that the neo-vm can be in
type Vmstate byte
2019-03-17 18:31:58 +00:00
// List of possible vm states
const (
NONE = 0
HALT = 1 << 0
FAULT = 1 << 1
BREAK = 1 << 2
)