(self)
| 1966 | return 'spot' |
| 1967 | |
| 1968 | def request_id(self): |
| 1969 | # their support said that reqid must be an int32, not documented |
| 1970 | self.lock_id() |
| 1971 | reqid = self.sum(self.safe_integer(self.options, 'reqid', 0), 1) |
| 1972 | self.options['reqid'] = reqid |
| 1973 | self.unlock_id() |
| 1974 | return reqid |
| 1975 | |
| 1976 | async def subscribe_public(self, url, messageHash, payload, channel, params={}, subscription=None): |
| 1977 | requestId = self.request_id() |
no test coverage detected