We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
false
The new Dec.IsFinite() function returns false if the Dec is finite, and true otherwise.
Dec.IsFinite()
Dec
true
cosmos-sdk/x/group/internal/math/dec.go
Lines 49 to 51 in 2c0d445
func (x Dec) IsFinite() bool { return x.dec.Form != apd.Finite }
Luckily, that function isn't used anywhere and it's in an internal directory, so it's not even in use by consumers of the SDK.
internal
main commit 3423442, also v0.46.5.
main
3423442
v0.46.5
Look at the code linked above.
The text was updated successfully, but these errors were encountered:
Whoops, forgot to clean that up (as we don't need it). This can just be removed.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Summary of Bug
The new
Dec.IsFinite()
function returnsfalse
if theDec
is finite, andtrue
otherwise.cosmos-sdk/x/group/internal/math/dec.go
Lines 49 to 51 in 2c0d445
Luckily, that function isn't used anywhere and it's in an
internal
directory, so it's not even in use by consumers of the SDK.Version
main
commit3423442
, alsov0.46.5
.Steps to Reproduce
Look at the code linked above.
The text was updated successfully, but these errors were encountered: