Skip to content

Commit

Permalink
core/vm: use proper JumpTable type
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Nov 24, 2021
1 parent 66ee942 commit 10b1cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/vm/interpreter.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type Config struct {
NoBaseFee bool // Forces the EIP-1559 baseFee to 0 (needed for 0 price calls)
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

ExtraEips []int // Additional EIPS that are to be enabled
}
Expand Down

0 comments on commit 10b1cd9

Please sign in to comment.