Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
affanv14 committed Mar 14, 2024
1 parent 62c2fcb commit 6b21e65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 0 additions & 2 deletions proto/dydxprotocol/ratelimit/pending_send_packet.proto
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
syntax = "proto3";
package dydxprotocol.ratelimit;

import "gogoproto/gogo.proto";

option go_package = "github.com/dydxprotocol/v4-chain/protocol/x/ratelimit/types";

// PendingSendPacket contains the channel_id and sequence pair to identify a pending packet
Expand Down
3 changes: 3 additions & 0 deletions proto/dydxprotocol/ratelimit/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ service Query {
option (google.api.http).get =
"/dydxprotocol/v4/ratelimit/capacity_by_denom";
}
// Get all pending send packets
rpc GetAllPendingSendPackets(GetAllPendingSendPacketsRequest)
returns (GetAllPendingSendPacketsResponse) {
option (google.api.http).get =
Expand All @@ -50,8 +51,10 @@ message QueryCapacityByDenomResponse {
[ (gogoproto.nullable) = false ];
}

// GetAllPendingSendPacketsRequest is a request type for the GetAllPendingSendPackets RPC
message GetAllPendingSendPacketsRequest {}

// GetAllPendingSendPacketsResponse is a response type of the GetAllPendingSendPackets RPC
message GetAllPendingSendPacketsResponse {
repeated PendingSendPacket pending_send_packets = 1 [ (gogoproto.nullable) = false ];
}

0 comments on commit 6b21e65

Please sign in to comment.