Skip to content

Commit

Permalink
linter version up (#13536)
Browse files Browse the repository at this point in the history
  • Loading branch information
AskAlexSharov authored Jan 24, 2025
1 parent 654e24f commit 9f6e0e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
if: runner.os == 'Linux'
uses: golangci/golangci-lint-action@v6
with:
version: v1.62.2
version: v1.63.4
skip-cache: true

- name: Lint
Expand Down
2 changes: 1 addition & 1 deletion erigon-lib/tools/golangci_lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

scriptDir=$(dirname "${BASH_SOURCE[0]}")
scriptName=$(basename "${BASH_SOURCE[0]}")
version="v1.62.2"
version="v1.63.4"

if [[ "$1" == "--install-deps" ]]
then
Expand Down
2 changes: 1 addition & 1 deletion turbo/engineapi/engine_helpers/fork_validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ func (fv *ForkValidator) validateAndStorePayload(txc wrap.TxContainer, header *t
// If we do not have the body we can recover it from the batch.
if body != nil {
if _, criticalError = rawdb.WriteRawBodyIfNotExists(txc.Tx, header.Hash(), header.Number.Uint64(), body); criticalError != nil {
return
return //nolint:nilnesserr
}
}

Expand Down

0 comments on commit 9f6e0e1

Please sign in to comment.