Skip to content

Commit

Permalink
fix order for JoinSwapShareAmountOut args
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrliu committed Jan 7, 2023
1 parent e82ee7c commit 7991c1c
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 88 deletions.
8 changes: 4 additions & 4 deletions proto/osmosis/gamm/v1beta1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -166,14 +166,14 @@ message MsgJoinSwapShareAmountOut {
uint64 pool_id = 2 [ (gogoproto.moretags) = "yaml:\"pool_id\"" ];
string token_in_denom = 3
[ (gogoproto.moretags) = "yaml:\"token_in_denom\"" ];
string share_out_amount = 4 [
string token_in_max_amount = 4 [
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
(gogoproto.moretags) = "yaml:\"share_out_amount\"",
(gogoproto.moretags) = "yaml:\"token_in_max_amount\"",
(gogoproto.nullable) = false
];
string token_in_max_amount = 5 [
string share_out_amount = 5 [
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
(gogoproto.moretags) = "yaml:\"token_in_max_amount\"",
(gogoproto.moretags) = "yaml:\"share_out_amount\"",
(gogoproto.nullable) = false
];
}
Expand Down
167 changes: 83 additions & 84 deletions x/gamm/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 7991c1c

Please sign in to comment.