From c267561406223f4074022790b94fcdbf7ff4a062 Mon Sep 17 00:00:00 2001 From: Nalin Bhardwaj Date: Mon, 7 Jan 2019 19:49:20 +0530 Subject: [PATCH] core/vm/gas_table: fix minor comment typo --- core/vm/gas_table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/gas_table.go b/core/vm/gas_table.go index df79f86eca..7319060e27 100644 --- a/core/vm/gas_table.go +++ b/core/vm/gas_table.go @@ -22,7 +22,7 @@ import ( "github.com/ethereum/go-ethereum/params" ) -// memoryGasCosts calculates the quadratic gas for memory expansion. It does so +// memoryGasCost calculates the quadratic gas for memory expansion. It does so // only for the memory region that is expanded, not the total memory. func memoryGasCost(mem *Memory, newMemSize uint64) (uint64, error) {