diff options
author | Ting-Wei Lan <tingwei.lan@cobinhood.com> | 2019-03-06 17:14:34 +0800 |
---|---|---|
committer | Jhih-Ming Huang <jm.huang@cobinhood.com> | 2019-05-06 10:44:04 +0800 |
commit | 69ae71c94f17ecc04121e3c8bf51399303ddf355 (patch) | |
tree | 45ca47538b04d27281a888ec2279b76fe15759d1 | |
parent | 9faecc847b803e248a5b4d3d256a90b6c55fd26f (diff) | |
download | dexon-69ae71c94f17ecc04121e3c8bf51399303ddf355.tar.gz dexon-69ae71c94f17ecc04121e3c8bf51399303ddf355.tar.zst dexon-69ae71c94f17ecc04121e3c8bf51399303ddf355.zip |
core: vm: fix typo
-rw-r--r-- | core/vm/vm.go | 2 |
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:] } } |