(type)
| 2661 | }, currency); |
| 2662 | } |
| 2663 | parseLedgerEntryType(type) { |
| 2664 | const types = { |
| 2665 | 'BALANCE': 'transaction', // Funds moved in/out wallet |
| 2666 | 'COLLATERAL': 'transfer', // Funds moved between portfolios |
| 2667 | }; |
| 2668 | return this.safeString(types, type, type); |
| 2669 | } |
| 2670 | getCurrencyFromChaincode(networkizedCode, currency) { |
| 2671 | if (currency !== undefined) { |
| 2672 | return currency; |
no test coverage detected