Browse Source

Round value

pull/7318/head
Thomas Kaul 2 days ago
parent
commit
b8a02d0c0c
  1. 4
      apps/api/src/services/twitter-bot/twitter-bot.service.ts

4
apps/api/src/services/twitter-bot/twitter-bot.service.ts

@ -59,9 +59,9 @@ export class TwitterBotService implements OnModuleInit {
symbolItem.marketPrice
);
let status = `Current market mood is ${emoji} ${text.toLowerCase()} (${
let status = `Current market mood is ${emoji} ${text.toLowerCase()} (${round(
symbolItem.marketPrice
}/100)`;
)}/100)`;
const benchmarkListing = await this.getBenchmarkListing();

Loading…
Cancel
Save