aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/vm.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/vm/vm.go')
-rw-r--r--core/vm/vm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/vm.go b/core/vm/vm.go
index 8d4dffd0b..4c39d401c 100644
--- a/core/vm/vm.go
+++ b/core/vm/vm.go
@@ -97,7 +97,7 @@ func getVMAndCode(code []byte) (byte, []byte) {
case EVM, SQLVM:
return code[0], code[1:]
default:
- fmt.Printf("Unknow code prefix %x\n", code[0])
+ fmt.Printf("Unknown code prefix %x\n", code[0])
return EVM, code[1:]
}
}