aboutsummaryrefslogtreecommitdiffstats
path: root/vm/common.go
diff options
context:
space:
mode:
Diffstat (limited to 'vm/common.go')
-rw-r--r--vm/common.go5
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