Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
feat: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Jul 10, 2023
1 parent 96e2c54 commit 05a00e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver/chain_syncer/calldata/syncer.go
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ func (s *Syncer) insertNewHead(
baseFee, err := s.rpc.TaikoL2.GetBasefee(
&bind.CallOpts{BlockNumber: parent.Number},
uint32(event.Meta.Timestamp-parentTimestamp),
uint32(event.Meta.GasLimit+uint32(s.anchorConstructor.GasLimit())),
event.Meta.GasLimit+uint32(s.anchorConstructor.GasLimit()),
uint32(parent.GasUsed),
)
if err != nil {
Expand Down

0 comments on commit 05a00e7

Please sign in to comment.