mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-30 10:17:39 +00:00
core/vm: use proper JumpTable type (#23967)
This commit is contained in:
parent
f9e14af6fd
commit
3d3cc6c6d7
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ type Config struct {
|
|||
NoRecursion bool // Disables call, callcode, delegate call and create
|
||||
EnablePreimageRecording bool // Enables recording of SHA3/keccak preimages
|
||||
|
||||
JumpTable [256]*operation // EVM instruction table, automatically populated if unset
|
||||
JumpTable JumpTable // EVM instruction table, automatically populated if unset
|
||||
|
||||
EWASMInterpreter string // External EWASM interpreter options
|
||||
EVMInterpreter string // External EVM interpreter options
|
||||
|
|
|
|||
Loading…
Reference in a new issue