Improve navigating trades and positions by cross-linking

This commit is contained in:
2022-11-29 07:20:39 +00:00
parent 4e1b574921
commit f240c4b381
13 changed files with 236 additions and 34 deletions

View File

@@ -131,7 +131,6 @@ class BaseExchange(ABC):
def validate_response(self, response, method):
schema = self.get_schema(method)
# Return a dict of the validated response
print("RESP", response)
response_valid = schema(**response).dict()
return response_valid