mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-12 14:19:04 +00:00
core/vm: enable 8024 instructions in Amsterdam (#33928)
This commit is contained in:
parent
5695fbc156
commit
2726c9ef9e
1 changed files with 1 additions and 0 deletions
|
|
@ -96,6 +96,7 @@ func newVerkleInstructionSet() JumpTable {
|
|||
func newAmsterdamInstructionSet() JumpTable {
|
||||
instructionSet := newOsakaInstructionSet()
|
||||
enable7843(&instructionSet) // EIP-7843 (SLOTNUM opcode)
|
||||
enable8024(&instructionSet) // EIP-8024 (Backward compatible SWAPN, DUPN, EXCHANGE)
|
||||
return validate(instructionSet)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue