(self, url)
| 73 | }) |
| 74 | |
| 75 | def request_id(self, url): |
| 76 | options = self.safe_dict(self.options, 'requestId', {}) |
| 77 | previousValue = self.safe_integer(options, url, 0) |
| 78 | newValue = self.sum(previousValue, 1) |
| 79 | self.options['requestId'][url] = newValue |
| 80 | return newValue |
| 81 | |
| 82 | async def watch_public(self, messageHash, message): |
| 83 | # the default id |
no test coverage detected