diff --git a/hashtopolis/hashtopolis.py b/hashtopolis/hashtopolis.py index 0800dbd..18d1933 100644 --- a/hashtopolis/hashtopolis.py +++ b/hashtopolis/hashtopolis.py @@ -1101,7 +1101,7 @@ def get_cracks_per_day(self): uri = self._api_endpoint + self._model_uri + 'getCracksPerDay' r = requests.get(uri, headers=self._headers) self.validate_status_code(r, [200], "getCracksPerDay failed") - return r.json()['meta'] + return r.json()['data'] def rebuild_chunk_cache(self): response = self._helper_request("rebuildChunkCache", {})