diff options
author | Abel Nieto <anietoro@uwaterloo.ca> | 2018-05-29 19:22:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 19:22:00 +0800 |
commit | d258eee21177326c136893bb100285376a3f297c (patch) | |
tree | 18f5251212a2756c3e33307cdf218ce00e04b31e /core/vm | |
parent | 84f8c0cc1fbe1ab9c128555392a82ba609820fef (diff) | |
download | go-tangerine-d258eee21177326c136893bb100285376a3f297c.tar.gz go-tangerine-d258eee21177326c136893bb100285376a3f297c.tar.zst go-tangerine-d258eee21177326c136893bb100285376a3f297c.zip |
core/vm: fix typo in comment
Diffstat (limited to 'core/vm')
-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 |