aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-05-29 20:44:30 +0800
committerGitHub <noreply@github.com>2018-05-29 20:44:30 +0800
commitd51faee2402072a6af66b8f08f6334944585419d (patch)
tree361f7324166e730133790d448f8798a61f1c2d73 /core
parent426f62f1a8f25c10dbf17efe99242b4e1a44b83c (diff)
parentd258eee21177326c136893bb100285376a3f297c (diff)
downloadgo-tangerine-d51faee2402072a6af66b8f08f6334944585419d.tar
go-tangerine-d51faee2402072a6af66b8f08f6334944585419d.tar.gz
go-tangerine-d51faee2402072a6af66b8f08f6334944585419d.tar.bz2
go-tangerine-d51faee2402072a6af66b8f08f6334944585419d.tar.lz
go-tangerine-d51faee2402072a6af66b8f08f6334944585419d.tar.xz
go-tangerine-d51faee2402072a6af66b8f08f6334944585419d.tar.zst
go-tangerine-d51faee2402072a6af66b8f08f6334944585419d.zip
Merge pull request #16831 from abeln/patch-1
core/vm: fix typo in comment
Diffstat (limited to 'core')
-rw-r--r--core/vm/jump_table.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go
index 338994135..49a94d964 100644
--- a/core/vm/jump_table.go
+++ b/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