-
Notifications
You must be signed in to change notification settings - Fork 607
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: replace MinCoins with sdk coins.Min() #7127
Merged
czarcas7ic
merged 5 commits into
osmosis-labs:main
from
levisyin:refactor/replace-MinCoins
Jan 1, 2024
Merged
refactor: replace MinCoins with sdk coins.Min() #7127
czarcas7ic
merged 5 commits into
osmosis-labs:main
from
levisyin:refactor/replace-MinCoins
Jan 1, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
levisyin
requested review from
mattverse,
czarcas7ic,
p0mvn and
AlpinYukseloglu
as code owners
December 15, 2023 02:41
github-actions
bot
added
C:x/gamm
Changes, features and bugs related to the gamm module.
C:simulator
Edits simulator or simulations
labels
Dec 15, 2023
p0mvn
approved these changes
Dec 15, 2023
p0mvn
added
V:state/compatible/no_backport
State machine compatible PR, depends on prior breaks
A:no-changelog
labels
Dec 15, 2023
p0mvn
added
V:state/compatible/backport
State machine compatible PR, should be backported
A:backport/v20.x
backport patches to v20.x branch
A:backport/v21.x
backport patches to v21.x branch
and removed
A:no-changelog
V:state/compatible/no_backport
State machine compatible PR, depends on prior breaks
labels
Dec 15, 2023
mattverse
approved these changes
Dec 18, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for tracking these changes :) LGTM
Hi @mattverse sir, is there anything else need I to add or can we get this merged😀 |
@p0mvn Hi sir, can we get this merged😀 |
czarcas7ic
added
V:state/compatible/no_backport
State machine compatible PR, depends on prior breaks
and removed
A:backport/v20.x
backport patches to v20.x branch
A:backport/v21.x
backport patches to v21.x branch
V:state/compatible/backport
State machine compatible PR, should be backported
labels
Jan 1, 2024
mergify bot
pushed a commit
that referenced
this pull request
Jan 9, 2024
* refactor: replace MinCoins with sdk coins.Min() * fix: remove unused import (cherry picked from commit ccd1865) # Conflicts: # osmoutils/coin_helper.go
p0mvn
pushed a commit
that referenced
this pull request
Jan 9, 2024
* refactor: replace MinCoins with sdk coins.Min() (#7127) * refactor: replace MinCoins with sdk coins.Min() * fix: remove unused import (cherry picked from commit ccd1865) # Conflicts: # osmoutils/coin_helper.go * Fix merge conflict --------- Co-authored-by: levisyin <[email protected]> Co-authored-by: mattverse <[email protected]>
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A:backport/v21.x
backport patches to v21.x branch
A:no-changelog
C:simulator
Edits simulator or simulations
C:x/gamm
Changes, features and bugs related to the gamm module.
V:state/compatible/no_backport
State machine compatible PR, depends on prior breaks
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What is the purpose of the change
MinCoins
could be replaced bycoins.Min()
, this PR replaces all reference of usingMinCoins
tocoins.Min()