浏览代码

core/vm: fix typo in comment

Abel Nieto 7 年之前
父节点
当前提交
d258eee211
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/vm/jump_table.go

+ 1 - 1
core/vm/jump_table.go

@@ -33,7 +33,7 @@ type (
 var errGasUintOverflow = errors.New("gas uint64 overflow")
 
 type operation struct {
-	// op is the operation function
+	// execute is the operation function
 	execute executionFunc
 	// gasCost is the gas function and returns the gas required for execution
 	gasCost gasFunc