mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-19 11:20:45 +00:00
Update evm.go
This commit is contained in:
parent
777265620d
commit
e7e66a6b22
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ func NewEVM(blockCtx BlockContext, statedb StateDB, chainConfig *params.ChainCon
|
||||||
default:
|
default:
|
||||||
evm.table = &frontierInstructionSet
|
evm.table = &frontierInstructionSet
|
||||||
}
|
}
|
||||||
var extraEips []int
|
extraEips := make([]int, 0, len(evm.Config.ExtraEips))
|
||||||
if len(evm.Config.ExtraEips) > 0 {
|
if len(evm.Config.ExtraEips) > 0 {
|
||||||
// Deep-copy jumptable to prevent modification of opcodes in other tables
|
// Deep-copy jumptable to prevent modification of opcodes in other tables
|
||||||
evm.table = copyJumpTable(evm.table)
|
evm.table = copyJumpTable(evm.table)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue