Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ Ref: https://keepachangelog.com/en/1.0.0/
-->

# Changelog

## Unreleased
sei-chain
* [#2652](https://github.com/sei-protocol/sei-chain/pull/2652) Bump golangci-lint to v2.7.2

## v6.2.0
sei-chain
* [#2444](https://github.com/sei-protocol/sei-chain/pull/2444) Optimize getLogs performance
Expand Down
308 changes: 172 additions & 136 deletions go.mod

Large diffs are not rendered by default.

684 changes: 381 additions & 303 deletions go.sum

Large diffs are not rendered by default.

517 changes: 464 additions & 53 deletions go.work.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion oracle/price-feeder/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ test-unit:

lint:
@echo "--> Running linter"
@go run github.com/golangci/golangci-lint/cmd/golangci-lint run --timeout=10m
@go run github.com/golangci/golangci-lint/v2/cmd/golangci-lint run --timeout=10m

.PHONY: lint
2 changes: 1 addition & 1 deletion oracle/price-feeder/tools/tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
package tools

import (
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/golangci/golangci-lint/v2/cmd/golangci-lint"
)