forked from cerc-io/cosmos-explorer
fix: small number of commission & rewards
This commit is contained in:
parent
36c73ec5ee
commit
3ffcc90dd2
@ -259,7 +259,10 @@ export const useFormatter = defineStore('formatter', {
|
|||||||
if(amount < 0.01) {
|
if(amount < 0.01) {
|
||||||
fmt = '0.[000000]'
|
fmt = '0.[000000]'
|
||||||
}
|
}
|
||||||
|
if(amount < 0.000001) {
|
||||||
|
return `0 ${denom.substring(0, 10)}`;
|
||||||
|
}
|
||||||
|
console.log("amount:", amount, numeral(amount).format(fmt))
|
||||||
return `${numeral(amount).format(fmt)} ${
|
return `${numeral(amount).format(fmt)} ${
|
||||||
withDenom ? denom.substring(0, 10) : ''
|
withDenom ? denom.substring(0, 10) : ''
|
||||||
}`;
|
}`;
|
||||||
|
Loading…
Reference in New Issue
Block a user