Skip to content

Commit

Permalink
run gofumpt
Browse files Browse the repository at this point in the history
  • Loading branch information
facs95 committed May 7, 2024
1 parent a566d82 commit 67d3a53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/vm/evm.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ type EVM struct {

// hooks is a set of functions that can be used to intercept and modify the
// behavior of the EVM when executing certain opcodes.
// The hooks are called before the execution of the respective opcodes.
// The hooks are called before the execution of the respective opcodes.
hooks OpCodeHooks
}

Expand All @@ -113,7 +113,7 @@ func NewEVM(blockCtx BlockContext, txCtx TxContext, statedb StateDB, chainConfig
Config: config,
chainConfig: chainConfig,
chainRules: chainConfig.Rules(blockCtx.BlockNumber, blockCtx.Random != nil),
hooks: newNoopOpCodeHooks(),
hooks: newNoopOpCodeHooks(),
}
// set the default precompiles
evm.activePrecompiles = DefaultActivePrecompiles(evm.chainRules)
Expand Down

0 comments on commit 67d3a53

Please sign in to comment.