diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-05-29 20:44:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 20:44:30 +0800 |
commit | d51faee2402072a6af66b8f08f6334944585419d (patch) | |
tree | 361f7324166e730133790d448f8798a61f1c2d73 /core | |
parent | 426f62f1a8f25c10dbf17efe99242b4e1a44b83c (diff) | |
parent | d258eee21177326c136893bb100285376a3f297c (diff) | |
download | go-tangerine-d51faee2402072a6af66b8f08f6334944585419d.tar.gz 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.go | 2 |
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 |