Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-zaremba committed Mar 22, 2024
1 parent 7417060 commit 8dee4f2
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 65 deletions.
10 changes: 4 additions & 6 deletions proto/umee/auction/v1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ service Msg {

// MsgGovSetRewardsParams updates rewards auction parameters.
message MsgGovSetRewardsParams {
option (gogoproto.equal) = true;
option (gogoproto.goproto_getters) = false;
option (cosmos.msg.v1.signer) = "authority";
option (cosmos.msg.v1.signer) = "authority";

// authority must be the address of the governance account.
string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
Expand All @@ -39,9 +37,9 @@ message MsgGovSetRewardsParamsResponse {}

// MsgRewardsBid places a bid for a reword auction.
message MsgRewardsBid {
option (gogoproto.equal) = false;
option (gogoproto.goproto_getters) = false;
string sender = 1;
option (cosmos.msg.v1.signer) = "sender";

string sender = 1;
// amount of the bid in the base tokens
cosmos.base.v1beta1.Coin bid_amount = 2 [(gogoproto.nullable) = false];
// the current auction ID being bid on. Fails if the ID is not an ID of the current auction.
Expand Down
89 changes: 30 additions & 59 deletions x/auction/tx.pb.go

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

0 comments on commit 8dee4f2

Please sign in to comment.