(self, status: Str)
| 955 | return self.filter_by_array(results, 'type', ['deposit', 'withdrawal'], False) |
| 956 | |
| 957 | def parse_transaction_status(self, status: Str): |
| 958 | statuses = { |
| 959 | 'created': 'pending', |
| 960 | 'completed': 'ok', |
| 961 | 'canceled': 'canceled', |
| 962 | } |
| 963 | return self.safe_string(statuses, status, status) |
| 964 | |
| 965 | def parse_transaction(self, transaction: dict, currency: Currency = None) -> Transaction: |
| 966 | # |
no test coverage detected