core/vm: fix misleading comment (#28860)

fix misleading comment
pull/28837/head
trocher 10 months ago committed by GitHub
parent c89a3da7d9
commit 2dc74770a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      core/vm/jump_table.go

@ -122,7 +122,7 @@ func newLondonInstructionSet() JumpTable {
// constantinople, istanbul, petersburg and berlin instructions.
func newBerlinInstructionSet() JumpTable {
instructionSet := newIstanbulInstructionSet()
enable2929(&instructionSet) // Access lists for trie accesses https://eips.ethereum.org/EIPS/eip-2929
enable2929(&instructionSet) // Gas cost increases for state access opcodes https://eips.ethereum.org/EIPS/eip-2929
return validate(instructionSet)
}

Loading…
Cancel
Save