aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorstormpang <jialinpeng@vip.qq.com>2018-08-06 16:42:49 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-08-06 16:42:49 +0800
commit6711f098d5f070fbb26a4dd7899e3c6c766f4477 (patch)
treeb47fa701df7a58583c655056e4e959f89760509d /core
parentc376a5263ff9a1c00b068169399babadc2d7559e (diff)
downloadgo-tangerine-6711f098d5f070fbb26a4dd7899e3c6c766f4477.tar
go-tangerine-6711f098d5f070fbb26a4dd7899e3c6c766f4477.tar.gz
go-tangerine-6711f098d5f070fbb26a4dd7899e3c6c766f4477.tar.bz2
go-tangerine-6711f098d5f070fbb26a4dd7899e3c6c766f4477.tar.lz
go-tangerine-6711f098d5f070fbb26a4dd7899e3c6c766f4477.tar.xz
go-tangerine-6711f098d5f070fbb26a4dd7899e3c6c766f4477.tar.zst
go-tangerine-6711f098d5f070fbb26a4dd7899e3c6c766f4477.zip
core/vm: fix comment typo (#17319)
antything --> anything :P
Diffstat (limited to 'core')
-rw-r--r--core/vm/evm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/evm.go b/core/vm/evm.go
index c29bb8886..a2722537d 100644
--- a/core/vm/evm.go
+++ b/core/vm/evm.go
@@ -184,7 +184,7 @@ func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas
precompiles = PrecompiledContractsByzantium
}
if precompiles[addr] == nil && evm.ChainConfig().IsEIP158(evm.BlockNumber) && value.Sign() == 0 {
- // Calling a non existing account, don't do antything, but ping the tracer
+ // Calling a non existing account, don't do anything, but ping the tracer
if evm.vmConfig.Debug && evm.depth == 0 {
evm.vmConfig.Tracer.CaptureStart(caller.Address(), addr, false, input, gas, value)
evm.vmConfig.Tracer.CaptureEnd(ret, 0, 0, nil)