neoneo-go/pkg/vm/state.go
BlockChainDev baf9d2b768 - Add test for math Add opcode
- basic opcode execution
2019-03-15 22:42:35 +00:00

10 lines
100 B
Go

package vm
type vmstate byte
const (
NONE = 0
HALT = 1 << 0
FAULT = 1 << 1
BREAK = 1 << 2
)