diff options
author | Liang ZOU <liang.d.zou@gmail.com> | 2018-09-25 18:26:35 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2018-09-25 18:26:35 +0800 |
commit | 6663e5da10e7198f7ff5e883fd857240e59d476c (patch) | |
tree | 300654c5bfdc957423328d51af2339012d5673c0 /core/vm/instructions.go | |
parent | 30cd5c18549f645002aedb4c00e5bab683cb0835 (diff) | |
download | dexon-6663e5da10e7198f7ff5e883fd857240e59d476c.tar.gz dexon-6663e5da10e7198f7ff5e883fd857240e59d476c.tar.zst dexon-6663e5da10e7198f7ff5e883fd857240e59d476c.zip |
all: fix various comment typos (#17748)
Diffstat (limited to 'core/vm/instructions.go')
-rw-r--r-- | core/vm/instructions.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/instructions.go b/core/vm/instructions.go index ca9e775ac..4d1bd4a34 100644 --- a/core/vm/instructions.go +++ b/core/vm/instructions.go @@ -727,7 +727,7 @@ func opCreate2(pc *uint64, interpreter *EVMInterpreter, contract *Contract, memo } func opCall(pc *uint64, interpreter *EVMInterpreter, contract *Contract, memory *Memory, stack *Stack) ([]byte, error) { - // Pop gas. The actual gas in in interpreter.evm.callGasTemp. + // Pop gas. The actual gas in interpreter.evm.callGasTemp. interpreter.intPool.put(stack.pop()) gas := interpreter.evm.callGasTemp // Pop other call parameters. |