Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgao001 committed Oct 27, 2023
1 parent e0d8b29 commit 5e293e5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
6 changes: 5 additions & 1 deletion api/cosmos/oracle/v1/query.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions proto/cosmos/oracle/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,18 @@ message QueryParamsResponse {
Params params = 1 [(gogoproto.nullable) = false];
}

// ClaimSrcChain defines the src chain of a claim
enum ClaimSrcChain {
option (gogoproto.goproto_enum_prefix) = false;
// BSC defines BSC source chain
BSC = 0;

Check failure on line 36 in proto/cosmos/oracle/v1/query.proto

View workflow job for this annotation

GitHub Actions / lint

Enum value name "BSC" should be prefixed with "CLAIM_SRC_CHAIN_".

Check failure on line 36 in proto/cosmos/oracle/v1/query.proto

View workflow job for this annotation

GitHub Actions / lint

Enum zero value name "BSC" should be suffixed with "_UNSPECIFIED".
// OP_BNB defines OPBNB source chain
OP_BNB = 1;

Check failure on line 38 in proto/cosmos/oracle/v1/query.proto

View workflow job for this annotation

GitHub Actions / lint

Enum value name "OP_BNB" should be prefixed with "CLAIM_SRC_CHAIN_".
}

// QueryInturnRelayerRequest is the request type for the Query In-turn relayer RPC method.
message QueryInturnRelayerRequest {
// ClaimSrcChain defines the src chain of a claim
ClaimSrcChain claim_src_chain = 1;
}

Expand Down
6 changes: 5 additions & 1 deletion x/oracle/types/query.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5e293e5

Please sign in to comment.