(self)
| 122 | return await self.watch_multiple(self.urls['api']['ws'][apiPart], messageHashes, payload, rawHashes) |
| 123 | |
| 124 | def request_id(self): |
| 125 | self.lock_id() |
| 126 | newValue = self.sum(self.safe_integer(self.options, 'requestId', 0), 1) |
| 127 | self.options['requestId'] = newValue |
| 128 | self.unlock_id() |
| 129 | return newValue |
| 130 | |
| 131 | async def watch_ticker(self, symbol: str, params={}) -> Ticker: |
| 132 | """ |
no test coverage detected