From 6685195b71bc746d4e2191d29225645b9897d903 Mon Sep 17 00:00:00 2001 From: Benjamin Ross Date: Sun, 25 Mar 2018 17:10:18 -0700 Subject: [PATCH] Remove raise for status --- gdax/authenticated_client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gdax/authenticated_client.py b/gdax/authenticated_client.py index f550e2b..2fc222b 100644 --- a/gdax/authenticated_client.py +++ b/gdax/authenticated_client.py @@ -31,7 +31,6 @@ def get_accounts(self): def get_account_history(self, account_id): result = [] r = requests.get(self.url + '/accounts/{}/ledger'.format(account_id), auth=self.auth, timeout=self.timeout) - # r.raise_for_status() r_json = self._determine_response(r) result.append(r_json) if "cb-after" in r.headers: