Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Sai Kumar <[email protected]>
  • Loading branch information
robert-zaremba and gsk967 authored Mar 25, 2024
1 parent b85e7e6 commit 75c4953
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion proto/umee/auction/v1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ message GenesisState {
// Latest active (in bid phase) reward auction.
uint32 reward_auction_id = 2;
// Latest highest bid.
string highest_bidder = 3;
string highest_bidder = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"];

Check failure on line 20 in proto/umee/auction/v1/genesis.proto

View workflow job for this annotation

GitHub Actions / buf-lint

field umee.auction.v1.GenesisState.highest_bidder: unknown extension cosmos_proto.scalar
// Tokens collected for the current auction.
repeated cosmos.base.v1beta1.Coin current_rewards = 4 [(gogoproto.nullable) = false];
// Tokens collected for the next auction, while the current reward auction is still in the
Expand Down
2 changes: 1 addition & 1 deletion proto/umee/auction/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ service Query {
// RewardAuction queries the information of the auction by ID. If ID is ommitted, returns
// current reward auction params.
rpc RewardAuction(QueryRewardAuction) returns (QueryRewardAuctionResponse) {
option (google.api.http).get = "/umee/auction/v1/rewards/{id}";
option (google.api.http).get = "/umee/auction/v1/rewards";
}
}

Expand Down

0 comments on commit 75c4953

Please sign in to comment.