From d3e99f13ddd04a6823478aa7ce1035ca823847f7 Mon Sep 17 00:00:00 2001 From: P-Verbrugge <41943098+P-Verbrugge@users.noreply.github.com> Date: Thu, 6 Feb 2020 15:43:52 +0100 Subject: [PATCH] Changed website name to blockchain.com (#31528) The name and domain of blockchain.info has been changed to blockchain.com. Updated the names in de script. --- homeassistant/components/bitcoin/sensor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/bitcoin/sensor.py b/homeassistant/components/bitcoin/sensor.py index bc8394d51a5..6a8651be6dc 100644 --- a/homeassistant/components/bitcoin/sensor.py +++ b/homeassistant/components/bitcoin/sensor.py @@ -1,4 +1,4 @@ -"""Bitcoin information service that uses blockchain.info.""" +"""Bitcoin information service that uses blockchain.com.""" from datetime import timedelta import logging @@ -12,7 +12,7 @@ from homeassistant.helpers.entity import Entity _LOGGER = logging.getLogger(__name__) -ATTRIBUTION = "Data provided by blockchain.info" +ATTRIBUTION = "Data provided by blockchain.com" DEFAULT_CURRENCY = "USD" @@ -168,7 +168,7 @@ class BitcoinData: self.ticker = None def update(self): - """Get the latest data from blockchain.info.""" + """Get the latest data from blockchain.com.""" self.stats = statistics.get() self.ticker = exchangerates.get_ticker()