aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorHyung-Kyu Hqueue Choi <hyungkyu.choi@gmail.com>2018-09-05 16:29:51 +0800
committerFelix Lange <fjl@users.noreply.github.com>2018-09-05 16:29:51 +0800
commitcf33d8b83ce78d1e79cd8c43a21070b2050d5c7e (patch)
tree58df5c96a88baaff64e0dacfe32f9b89379d6cad /core
parent42bd67bd6fd599a5583452f011152a0c26c9dff4 (diff)
downloadgo-tangerine-cf33d8b83ce78d1e79cd8c43a21070b2050d5c7e.tar
go-tangerine-cf33d8b83ce78d1e79cd8c43a21070b2050d5c7e.tar.gz
go-tangerine-cf33d8b83ce78d1e79cd8c43a21070b2050d5c7e.tar.bz2
go-tangerine-cf33d8b83ce78d1e79cd8c43a21070b2050d5c7e.tar.lz
go-tangerine-cf33d8b83ce78d1e79cd8c43a21070b2050d5c7e.tar.xz
go-tangerine-cf33d8b83ce78d1e79cd8c43a21070b2050d5c7e.tar.zst
go-tangerine-cf33d8b83ce78d1e79cd8c43a21070b2050d5c7e.zip
core: fix typo in comment (#17586)
Diffstat (limited to 'core')
-rw-r--r--core/state_processor.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/state_processor.go b/core/state_processor.go
index 1a91a57ab..503a35d16 100644
--- a/core/state_processor.go
+++ b/core/state_processor.go
@@ -110,7 +110,7 @@ func ApplyTransaction(config *params.ChainConfig, bc ChainContext, author *commo
*usedGas += gas
// Create a new receipt for the transaction, storing the intermediate root and gas used by the tx
- // based on the eip phase, we're passing wether the root touch-delete accounts.
+ // based on the eip phase, we're passing whether the root touch-delete accounts.
receipt := types.NewReceipt(root, failed, *usedGas)
receipt.TxHash = tx.Hash()
receipt.GasUsed = gas