mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-14 12:06:40 +00:00
core/vm: separate opcode group for 0x20 range (#24850)
This commit is contained in:
parent
24c590cbec
commit
539bbd6349
1 changed files with 3 additions and 0 deletions
|
|
@ -64,7 +64,10 @@ const (
|
||||||
SHL OpCode = 0x1b
|
SHL OpCode = 0x1b
|
||||||
SHR OpCode = 0x1c
|
SHR OpCode = 0x1c
|
||||||
SAR OpCode = 0x1d
|
SAR OpCode = 0x1d
|
||||||
|
)
|
||||||
|
|
||||||
|
// 0x20 range - crypto.
|
||||||
|
const (
|
||||||
KECCAK256 OpCode = 0x20
|
KECCAK256 OpCode = 0x20
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue