Skip to content

Commit 758e1e9

Browse files
committed
Revert "fix lint"
This reverts commit ab4b2ee.
1 parent ab4b2ee commit 758e1e9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

server/api/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
cmtrpcserver "github.com/cometbft/cometbft/rpc/jsonrpc/server"
1313
gateway "github.com/cosmos/gogogateway"
14-
"github.com/golang/protobuf/proto"
14+
"github.com/golang/protobuf/proto" //nolint:staticcheck // needed for compatibility
1515
"github.com/gorilla/handlers"
1616
"github.com/gorilla/mux"
1717
"github.com/grpc-ecosystem/grpc-gateway/runtime"

server/api/server_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"strings"
1515
"testing"
1616

17-
"github.com/golang/protobuf/proto"
17+
"github.com/golang/protobuf/proto" //nolint:staticcheck // needed for testing
1818
"github.com/stretchr/testify/require"
1919
"github.com/stretchr/testify/suite"
2020
"google.golang.org/grpc/codes"

types/result_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
cmtt "github.com/cometbft/cometbft/proto/tendermint/types"
1212
coretypes "github.com/cometbft/cometbft/rpc/core/types"
1313
cmt "github.com/cometbft/cometbft/types"
14-
"github.com/golang/protobuf/proto"
14+
"github.com/golang/protobuf/proto" //nolint:staticcheck // needed for testing
1515
"github.com/stretchr/testify/require"
1616
"github.com/stretchr/testify/suite"
1717

x/auth/tx/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77

88
gogogrpc "github.com/cosmos/gogoproto/grpc"
9-
"github.com/golang/protobuf/proto"
9+
"github.com/golang/protobuf/proto" //nolint:staticcheck // needed for testing
1010
"github.com/grpc-ecosystem/grpc-gateway/runtime"
1111
"google.golang.org/grpc/codes"
1212
"google.golang.org/grpc/status"

0 commit comments

Comments
 (0)