fix(tokens): replace raw arithmetic with checked overflow-safe math#1030
Merged
greatest0fallt1me merged 1 commit intoJul 26, 2026
Conversation
Replace unchecked multiply/divide in normalize_amount and denormalize_amount with checked_mul/checked_div, returning Error::Overflow on overflow. Changes: - normalize_amount: returns Result<i128, Error> instead of i128 - denormalize_amount: returns Result<i128, Error> instead of i128 - resolution.rs: updated callers with ? operator - Added overflow edge-case tests (i128::MAX, zero, small values) - Updated existing tests to use .unwrap() on new Result types Closes Predictify-org#986
|
@queenfrostbite Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Replace unchecked multiply/divide operations in
normalize_amountanddenormalize_amountwithchecked_mul/checked_div, returningError::Overflowon overflow.Changes
contracts/predictify-hybrid/src/tokens.rs:
normalize_amount: returnsResult<i128, Error>instead ofi128denormalize_amount: returnsResult<i128, Error>instead ofi128*and/operations replaced withchecked_mul/checked_div///rustdoc to document the new return typei128::MAX, zero, small values).unwrap()on the newResulttypescontracts/predictify-hybrid/src/resolution.rs:
normalize_amountto propagate theResultwith?operatorAPI Change
The return type of
normalize_amountanddenormalize_amountchanged fromi128toResult<i128, Error>. This is a breaking change, but the only caller (resolution.rs) already operates in aResult-returning context.Security
unwrap()in production paths — all overflow paths returnErr(Error::Overflow)Error::Overflow(code 672) already exists inerr.rschecked_divto guard against division-by-zeroTesting
.unwrap())test_normalize_overflow_multiply,test_denormalize_overflow_multiplytest_normalize_small_amounts,test_denormalize_small_amountsNote: The crate has pre-existing compilation errors (860 on master) from SDK compatibility issues unrelated to this change. My changes introduce zero new compilation errors.
Closes #986