Browse Source

Merge pull request #16831 from abeln/patch-1

core/vm: fix typo in comment
Péter Szilágyi 7 năm trước cách đây
mục cha
commit
d51faee240
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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