(type)
| 338 | } |
| 339 | |
| 340 | parseLedgerEntryType (type) { |
| 341 | const types: Dict = { |
| 342 | 'funding': 'transaction', |
| 343 | 'withdrawal': 'transaction', |
| 344 | 'trade': 'trade', |
| 345 | 'fee': 'fee', |
| 346 | }; |
| 347 | return this.safeString (types, type, type); |
| 348 | } |
| 349 | |
| 350 | parseLedgerEntry (item: Dict, currency: Currency = undefined): LedgerEntry { |
| 351 | // |
no test coverage detected