mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 23:30:36 +00:00
a7e973030c
rename invocation to invocationstack export vmstate
11 lines
167 B
Go
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
|
|
)
|