Skip to content
This repository has been archived by the owner on Feb 9, 2025. It is now read-only.

Commit

Permalink
fix col fee decimals (#2270)
Browse files Browse the repository at this point in the history
  • Loading branch information
abrzezinski94 authored Apr 27, 2024
1 parent 242f992 commit 85b15bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/instructions/programs/mangoV4.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2107,7 +2107,7 @@ const getFormattedListingValues = (args: FlatListingArgs) => {
interestTargetUtilization: args.interestTargetUtilization,
interestCurveScaling: args.interestCurveScaling,
groupInsuranceFund: args.groupInsuranceFund,
collateralFeePerDay: (args.collateralFeePerDay * 100).toFixed(2),
collateralFeePerDay: (args.collateralFeePerDay * 100).toFixed(4),
zeroUtilRate: (args.zeroUtilRate * 100).toFixed(2),
disableAssetLiquidation: args.disableAssetLiquidation,
}
Expand Down

0 comments on commit 85b15bb

Please sign in to comment.