mirror of
https://github.com/LBRYFoundation/lbry-wunderbot.git
synced 2025-08-30 08:51:30 +00:00
We do not need toFixed, toFloat does this automatically for us.
This commit is contained in:
parent
1770f147cf
commit
43fec97474
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ async function announceClaims() {
|
||||||
}
|
}
|
||||||
claimEmbed.addField(
|
claimEmbed.addField(
|
||||||
"Claimed for",
|
"Claimed for",
|
||||||
`${Number.parseFloat(claim.outputValue).toFixed(4)} LBC`
|
`${Number.parseFloat(claim.outputValue)} LBC`
|
||||||
);
|
);
|
||||||
discordPost(claimEmbed);
|
discordPost(claimEmbed);
|
||||||
} else if (claim.name.charAt(0) === "@") {
|
} else if (claim.name.charAt(0) === "@") {
|
||||||
|
|
Loading…
Add table
Reference in a new issue