Skip to content

Commit

Permalink
remove disable line
Browse files Browse the repository at this point in the history
  • Loading branch information
jochem-brouwer committed Aug 17, 2024
1 parent e89a98e commit 54dc7b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/evm/src/opcodes/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export function subMemUsage(runState: RunState, offset: bigint, length: bigint,

const words = newMemoryWordCount
const fee = common.param('memoryGas')
const quadCoefficient = common.param('quadCoefficientDivGas') // cspell:disable-line
const quadCoefficient = common.param('quadCoefficientDivGas')
// words * 3 + words ^2 / 512
let cost = words * fee + (words * words) / quadCoefficient

Expand Down

0 comments on commit 54dc7b6

Please sign in to comment.