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
#3393 introduces the Changes type to track the unutilized amount of a spend note so that we can correctly handle fee payment and actual changes. The type is a map from an extended spending key to a I128Sum but these amounts are guaranteed to be non-negative so we should change them to U128Sum.
We can also change from_masp_denominated_i128 to handle unsigned amounts given that this function is used only with changes.
The text was updated successfully, but these errors were encountered:
#3393 introduces the
Changes
type to track the unutilized amount of a spend note so that we can correctly handle fee payment and actual changes. The type is a map from an extended spending key to aI128Sum
but these amounts are guaranteed to be non-negative so we should change them toU128Sum
.We can also change
from_masp_denominated_i128
to handle unsigned amounts given that this function is used only with changes.The text was updated successfully, but these errors were encountered: