aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/vm/sqlvm/runtime/opcodes.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/vm/sqlvm/runtime/opcodes.go b/core/vm/sqlvm/runtime/opcodes.go
index e65565670..cd884350a 100644
--- a/core/vm/sqlvm/runtime/opcodes.go
+++ b/core/vm/sqlvm/runtime/opcodes.go
@@ -53,12 +53,12 @@ const (
// 0x50 range - function ops
const (
- FUNC = iota + 0x50
+ FUNC OpCode = iota + 0x50
)
// 0x60 range - storage ops
const (
- INSERT = iota + 0x60
+ INSERT OpCode = iota + 0x60
UPDATE
LOAD
DELETE