Skip to content

Commit

Permalink
fix: derived prices precision
Browse files Browse the repository at this point in the history
  • Loading branch information
toniocodo committed Aug 2, 2024
1 parent 08230f8 commit c06d1fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/shared/providers/src/prices/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const pricesFetcher: (
allPrices[dep.id] =
dep.dependsOn?.reduce(
(acc, curr) => mul(acc, allPrices[curr]),
from(1),
from(1, 18),
) ?? from(0);
});
} catch {}
Expand Down

0 comments on commit c06d1fb

Please sign in to comment.