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
In #853 (released as 0.14) impl ops::Sub<Uint128> for Uint128 and impl<'a> ops::Sub<&'a Uint128> for Uint128 were removed because they were not implemented with a panic on overflow (the behaviour of + for u128).
Let's wait some time until users migrated to the explicit *_sub methods. Then let's implement ops::Sub<Uint128> for Uint128 again with a panic on overflow (consistent with u128 and impl ops::Add<Uint128> for Uint128).
The text was updated successfully, but these errors were encountered:
In #853 (released as 0.14)
impl ops::Sub<Uint128> for Uint128
andimpl<'a> ops::Sub<&'a Uint128> for Uint128
were removed because they were not implemented with a panic on overflow (the behaviour of+
foru128
).Let's wait some time until users migrated to the explicit
*_sub
methods. Then let's implementops::Sub<Uint128> for Uint128
again with a panic on overflow (consistent withu128
andimpl ops::Add<Uint128> for Uint128
).The text was updated successfully, but these errors were encountered: