From 556888c4a971d4fd02be15f09cba7a65c5c0d930 Mon Sep 17 00:00:00 2001 From: Ali Atiia <42751398+aliatiia@users.noreply.github.com> Date: Mon, 2 Mar 2020 12:20:27 -0500 Subject: [PATCH] core/vm: fix method doc (#20730) typo in func name in the comment --- core/vm/gas.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/gas.go b/core/vm/gas.go index bd8b4f104..3e3052faa 100644 --- a/core/vm/gas.go +++ b/core/vm/gas.go @@ -30,7 +30,7 @@ const ( GasExtStep uint64 = 20 ) -// calcGas returns the actual gas cost of the call. +// callGas returns the actual gas cost of the call. // // The cost of gas was changed during the homestead price change HF. // As part of EIP 150 (TangerineWhistle), the returned gas is gas - base * 63 / 64.