Skip to content

Commit

Permalink
variable name change for lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gatsbyz committed Jun 28, 2023
1 parent 404bc56 commit 7bca43b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/loadtest/loadtest.go
Original file line number Diff line number Diff line change
Expand Up @@ -800,8 +800,8 @@ func mainLoop(ctx context.Context, c *ethclient.Client, rpc *ethrpc.Client) erro
var retryForNonce bool = false
var myNonceValue uint64

header, err := c.HeaderByNumber(ctx, nil)
if err != nil {
header, _err := c.HeaderByNumber(ctx, nil)
if _err != nil {
log.Error().Err(err).Msg("Unable to get head")
return
}
Expand Down

0 comments on commit 7bca43b

Please sign in to comment.