Skip to content

Commit 7991c1c

Browse files
committed
fix order for JoinSwapShareAmountOut args
1 parent e82ee7c commit 7991c1c

File tree

2 files changed

+87
-88
lines changed

2 files changed

+87
-88
lines changed

proto/osmosis/gamm/v1beta1/tx.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,14 +166,14 @@ message MsgJoinSwapShareAmountOut {
166166
uint64 pool_id = 2 [ (gogoproto.moretags) = "yaml:\"pool_id\"" ];
167167
string token_in_denom = 3
168168
[ (gogoproto.moretags) = "yaml:\"token_in_denom\"" ];
169-
string share_out_amount = 4 [
169+
string token_in_max_amount = 4 [
170170
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
171-
(gogoproto.moretags) = "yaml:\"share_out_amount\"",
171+
(gogoproto.moretags) = "yaml:\"token_in_max_amount\"",
172172
(gogoproto.nullable) = false
173173
];
174-
string token_in_max_amount = 5 [
174+
string share_out_amount = 5 [
175175
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
176-
(gogoproto.moretags) = "yaml:\"token_in_max_amount\"",
176+
(gogoproto.moretags) = "yaml:\"share_out_amount\"",
177177
(gogoproto.nullable) = false
178178
];
179179
}

x/gamm/types/tx.pb.go

Lines changed: 83 additions & 84 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)