(self, status)
| 2493 | return ledger |
| 2494 | |
| 2495 | def parse_ledger_entry_status(self, status): |
| 2496 | types = { |
| 2497 | 'completed': 'ok', |
| 2498 | } |
| 2499 | return self.safe_string(types, status, status) |
| 2500 | |
| 2501 | def parse_ledger_entry_type(self, type): |
| 2502 | types = { |
no test coverage detected