quan-digital / ftx

Library for connecting to the FTX API.
MIT License
164 stars 59 forks source link

Fixed bug in authentication_required; added get_order_status() #15

Closed choffstein closed 3 years ago

choffstein commented 3 years ago

Anytime a method decorated with authentication_required is called with a parameter, an error was being thrown: got multiple values for argument 'self'. This was fixed by replacing self=self with just self.

I also added code to get order status by existing order ID.