aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth
diff options
context:
space:
mode:
authorRob Mulholand <rmulholand@8thlight.com>2019-09-13 03:22:22 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-09-13 03:22:22 +0800
commit3b6c9902f308ffc595912802644c5d21616e61f5 (patch)
tree96f85064ef6ac4359daca5e690a29c6d090ddb3f /cmd/geth
parentefe123759ab5c6eb536dc3f0718ec5acc2dca7fe (diff)
downloadgo-tangerine-3b6c9902f308ffc595912802644c5d21616e61f5.tar
go-tangerine-3b6c9902f308ffc595912802644c5d21616e61f5.tar.gz
go-tangerine-3b6c9902f308ffc595912802644c5d21616e61f5.tar.bz2
go-tangerine-3b6c9902f308ffc595912802644c5d21616e61f5.tar.lz
go-tangerine-3b6c9902f308ffc595912802644c5d21616e61f5.tar.xz
go-tangerine-3b6c9902f308ffc595912802644c5d21616e61f5.tar.zst
go-tangerine-3b6c9902f308ffc595912802644c5d21616e61f5.zip
core: remove unused gas return in ApplyTransaction (#20065)
Diffstat (limited to 'cmd/geth')
-rw-r--r--cmd/geth/retesteth.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/retesteth.go b/cmd/geth/retesteth.go
index 9469c9f5f..b6aa3706b 100644
--- a/cmd/geth/retesteth.go
+++ b/cmd/geth/retesteth.go
@@ -508,7 +508,7 @@ func (api *RetestethAPI) mineBlock() error {
statedb.Prepare(tx.Hash(), common.Hash{}, txCount)
snap := statedb.Snapshot()
- receipt, _, err := core.ApplyTransaction(
+ receipt, err := core.ApplyTransaction(
api.chainConfig,
api.blockchain,
&api.author,