Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
detectivekim committed Aug 19, 2024
1 parent 819c8e3 commit 7296038
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libraries/fee_policy.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ pub impl FeePolicyImpl of FeePolicyTrait {
} else {
is_positive
};
let abs_fee: i257 = divide(amount * abs_rate.into(), RATE_PRECISION.into(), rounding_up).into();
let abs_fee: i257 = divide(amount * abs_rate.into(), RATE_PRECISION.into(), rounding_up)
.into();
if (is_positive) {
abs_fee
} else {
Expand Down

0 comments on commit 7296038

Please sign in to comment.