mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-18 19:00:46 +00:00
core/vm/gen: fix lint
This commit is contained in:
parent
419e5e1438
commit
ed658c8f3c
1 changed files with 1 additions and 1 deletions
|
|
@ -217,7 +217,7 @@ func (g *generator) deriveMeta(forks []vm.GenFork) {
|
|||
// gas / stack bounds across all forks where it appears (that is what makes
|
||||
// it safe to bake as a constant). Bail loudly otherwise.
|
||||
for code, handler := range inlineHandler {
|
||||
g.checkStable(byte(code), handler, forks)
|
||||
g.checkStable(code, handler, forks)
|
||||
}
|
||||
for code := 0x62; code <= 0x7f; code++ { // PUSH3-32
|
||||
g.checkStable(byte(code), "makePush", forks)
|
||||
|
|
|
|||
Loading…
Reference in a new issue