diff options
Diffstat (limited to 'core/vm/jit.go')
-rw-r--r-- | core/vm/jit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/jit.go b/core/vm/jit.go index 55d2e0477..b75558d39 100644 --- a/core/vm/jit.go +++ b/core/vm/jit.go @@ -319,7 +319,7 @@ func runProgram(program *Program, pcstart uint64, mem *Memory, stack *Stack, env }() } - homestead := env.RuleSet().IsHomestead(env.BlockNumber()) + homestead := env.ChainConfig().IsHomestead(env.BlockNumber()) for pc < uint64(len(program.instructions)) { instrCount++ |