all: fix various comment typos (#17748)

This commit is contained in:
Liang ZOU
2018-09-25 18:26:35 +08:00
committed by Felix Lange
parent 30cd5c1854
commit 6663e5da10
9 changed files with 10 additions and 10 deletions

View File

@ -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.