neoneo-go/pkg/vm/state.go
BlockChainDev a7e973030c Remove context_test
rename invocation to invocationstack
export vmstate
2019-03-16 21:52:05 +00:00

11 lines
167 B
Go

package vm
//Vmstate represents all possible states that the neo-vm can be in
type Vmstate byte
const (
NONE = 0
HALT = 1 << 0
FAULT = 1 << 1
BREAK = 1 << 2
)