From 69ae71c94f17ecc04121e3c8bf51399303ddf355 Mon Sep 17 00:00:00 2001 From: Ting-Wei Lan Date: Wed, 6 Mar 2019 17:14:34 +0800 Subject: core: vm: fix typo --- core/vm/vm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') 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:] } } -- cgit v1.2.3