core/vm/gas_table: fix minor comment typo

This commit is contained in:
Nalin Bhardwaj 2019-01-07 19:49:20 +05:30
parent 356c49fa7e
commit c267561406
No known key found for this signature in database
GPG key ID: 79FC16920BE4C18C

View file

@ -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) {