chore: reduce decimal places by 1

This commit is contained in:
pskfyi 2022-01-13 19:29:46 -08:00 committed by pskfyi
commit cfa418bee3

View file

@ -567,7 +567,7 @@ export const getters = {
0 0
), ),
suffixedDecimalText: (state) => (n) => { suffixedDecimalText: (state) => (n) => {
const DIGITS_AFTER_DP = 3 const DIGITS_AFTER_DP = 2
const suffixValues = { Z: 0, k: 1e3, M: 1e6, B: 1e9, T: 1e12, X: 1e15 } const suffixValues = { Z: 0, k: 1e3, M: 1e6, B: 1e9, T: 1e12, X: 1e15 }
n = new Decimal(n) n = new Decimal(n)