(markets)
| 1117 | return this.parseMarkets(swapAndFutureMarkets); |
| 1118 | } |
| 1119 | parseMarkets(markets) { |
| 1120 | const result = []; |
| 1121 | for (let i = 0; i < markets.length; i++) { |
| 1122 | result.push(this.parseMarket(markets[i])); |
| 1123 | } |
| 1124 | return result; |
| 1125 | } |
| 1126 | parseMarket(market) { |
| 1127 | // |
| 1128 | // spot |
no test coverage detected