diff options
Diffstat (limited to 'vm/common.go')
-rw-r--r-- | vm/common.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/vm/common.go b/vm/common.go index ed250dab1..ff187001f 100644 --- a/vm/common.go +++ b/vm/common.go @@ -9,11 +9,10 @@ import ( var vmlogger = logger.NewLogger("VM") -type Type int +type Type byte const ( - StandardVmTy Type = iota - DebugVmTy + StdVmTy Type = iota JitVmTy MaxVmTy |