You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Uint32 represents an unsigned 32-bit integer, which has a range of 0 to 2^32-1.
Integer in Java represents a signed 32-bit integer, which has a range of -2^31 to 2^31-1.
What did you expect to see?
We should use Long instead of Integer.
What did you see instead?
N/A
The text was updated successfully, but these errors were encountered:
What version are you using?
c258f0d
What did you do?
https://github.com/stellar/java-stellar-sdk/blob/c258f0d5cf4b734e2bed4ccfbcf3c27dcee0dcb4/src/main/java/org/stellar/sdk/xdr/Uint32.java#L15
Uint32 represents an unsigned 32-bit integer, which has a range of 0 to 2^32-1.
Integer in Java represents a signed 32-bit integer, which has a range of -2^31 to 2^31-1.
What did you expect to see?
We should use Long instead of Integer.
What did you see instead?
N/A
The text was updated successfully, but these errors were encountered: