Skip to content

Commit 0f0abb4

Browse files
authored
Merge pull request #30 from BitPoolMining/Dev
Modification for btc revenue formatting.
2 parents 80e62d6 + f73a473 commit 0f0abb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BitPoolMiner/Models/WhatToMine/WhatToMineResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public string BTC_revenue
5656
// Set the decimal seperator
5757
format.NumberDecimalSeparator = ".";
5858

59-
return Math.Round(Double.Parse(btc_revenue, format), 6).ToString();
59+
return Math.Round(Double.Parse(btc_revenue, format), 6).ToString("N6");
6060
}
6161
set
6262
{

0 commit comments

Comments
 (0)