Skip to content
Snippets Groups Projects
Commit 059e8722 authored by P-Verbrugge's avatar P-Verbrugge Committed by Fabian Affolter
Browse files

Updated formatting of total_blocks value (#30170)

The number of total blocks is always a round number. There can't be .1 or .11 blocks for example. The output is now always formatted with two decimals that are always 00.
parent f23cc166
No related branches found
No related tags found
No related merge requests found
......@@ -148,7 +148,7 @@ class BitcoinSensor(Entity):
elif self.type == "total_btc":
self._state = "{0:.2f}".format(stats.total_btc * 0.00000001)
elif self.type == "total_blocks":
self._state = "{0:.2f}".format(stats.total_blocks)
self._state = "{0:.0f}".format(stats.total_blocks)
elif self.type == "next_retarget":
self._state = "{0:.2f}".format(stats.next_retarget)
elif self.type == "estimated_transaction_volume_usd":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment