Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ganeshvanahalli committed Jan 10, 2025
1 parent 71894de commit fe7ee6e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions execution/gethexec/executionengine.go
Original file line number Diff line number Diff line change
Expand Up @@ -713,8 +713,7 @@ func (s *ExecutionEngine) appendBlock(block *types.Block, statedb *state.StateDB
if status == core.SideStatTy {
return errors.New("geth rejected block as non-canonical")
}
blockCalcTime := time.Since(startTime)
blockWriteToDbTimer.Update(blockCalcTime)
blockWriteToDbTimer.Update(time.Since(startTime))
baseFeeGauge.Update(block.BaseFee().Int64())
txCountHistogram.Update(int64(len(block.Transactions()) - 1))
var blockGasused uint64
Expand Down

0 comments on commit fe7ee6e

Please sign in to comment.