Skip to content

Commit

Permalink
Fix proto file
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor118 committed Dec 11, 2024
1 parent 8522997 commit 2368b68
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 75 deletions.
6 changes: 3 additions & 3 deletions proto/osmosis/tokenfactory/v1beta1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ message MsgCreateStakeDrop {

string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ];
//amount to stakedrop
cosmos.base.v1beta1.Coin amount = 3 [
cosmos.base.v1beta1.Coin amount = 2 [
(gogoproto.moretags) = "yaml:\"amount\"",
(gogoproto.nullable) = false
];

int64 start_block = 4;
int64 end_block = 5;
int64 start_block = 3;
int64 end_block = 4;
}

message MsgCreateStakeDropResponse {}
Expand Down
143 changes: 71 additions & 72 deletions x/tokenfactory/types/tx.pb.go

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

0 comments on commit 2368b68

Please sign in to comment.