Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-cll committed Jul 31, 2024
1 parent 478de31 commit 740b01d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mercury/v4/aggregate_functions.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func GetConsensusMarketStatus(paos []PAOMarketStatus, f int) (uint32, error) {
for _, pao := range paos {
marketStatus, valid := pao.GetMarketStatus()
if valid {
marketStatusCounts[marketStatus] += 1
marketStatusCounts[marketStatus]++
}
}

Expand Down
6 changes: 3 additions & 3 deletions mercury/v4/mercury.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import (
"math/big"
"time"

"github.com/smartcontractkit/chainlink-common/pkg/logger"
mercurytypes "github.com/smartcontractkit/chainlink-common/pkg/types/mercury"
v4 "github.com/smartcontractkit/chainlink-common/pkg/types/mercury/v4"
"github.com/smartcontractkit/libocr/offchainreporting2plus/ocr3types"
"github.com/smartcontractkit/libocr/offchainreporting2plus/types"
"google.golang.org/protobuf/proto"

"github.com/smartcontractkit/chainlink-common/pkg/logger"
mercurytypes "github.com/smartcontractkit/chainlink-common/pkg/types/mercury"
v4 "github.com/smartcontractkit/chainlink-common/pkg/types/mercury/v4"
"github.com/smartcontractkit/chainlink-data-streams/mercury"
)

Expand Down
6 changes: 3 additions & 3 deletions mercury/v4/mercury_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ import (
"time"

"github.com/shopspring/decimal"
"github.com/smartcontractkit/chainlink-common/pkg/logger"
mercurytypes "github.com/smartcontractkit/chainlink-common/pkg/types/mercury"
"github.com/smartcontractkit/chainlink-common/pkg/types/mercury/v4"
"github.com/smartcontractkit/libocr/commontypes"
"github.com/smartcontractkit/libocr/offchainreporting2plus/types"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"google.golang.org/protobuf/proto"

"github.com/smartcontractkit/chainlink-common/pkg/logger"
mercurytypes "github.com/smartcontractkit/chainlink-common/pkg/types/mercury"
"github.com/smartcontractkit/chainlink-common/pkg/types/mercury/v4"
"github.com/smartcontractkit/chainlink-data-streams/mercury"
)

Expand Down

0 comments on commit 740b01d

Please sign in to comment.