From 1bc3563b73a7c62538d04901c5abcc45b76ff39c Mon Sep 17 00:00:00 2001 From: Sein Coray Date: Thu, 23 Jul 2026 15:42:48 +0200 Subject: [PATCH] Change using data instead of meta for the return of getCracksPerDay --- hashtopolis/hashtopolis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", {})