From 3555a96b88050f9e65b3874648a2d69053e247c2 Mon Sep 17 00:00:00 2001 From: totoyo1211 <105341320+totoyo1211@users.noreply.github.com> Date: Mon, 7 Oct 2024 06:00:49 +0900 Subject: [PATCH] Revert "added get_hashpower_orderbook for a specific algo" --- python/nicehash.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/nicehash.py b/python/nicehash.py index 99e951b..aab0f72 100644 --- a/python/nicehash.py +++ b/python/nicehash.py @@ -208,9 +208,6 @@ def delete_pool(self, pool_id): def get_my_pools(self, page, size): return self.request('GET', '/main/api/v2/pools/', '', None) - def get_hashpower_orderbook(self, algorithm): - return self.request('GET', '/main/api/v2/hashpower/orderBook/', 'algorithm=' + algorithm, None ) - def create_hashpower_order(self, market, type, algorithm, price, limit, amount, pool_id, algo_response): algo_setting = self.algo_settings_from_response(algorithm, algo_response)