(self)
| 76 | Throttle.__init__(self, BMConfigParser().safeGetInt('bitmessagesettings', 'maxdownloadrate')*1024) |
| 77 | |
| 78 | def resetLimit(self): |
| 79 | with self.lock: |
| 80 | self.limit = BMConfigParser().safeGetInt('bitmessagesettings', 'maxdownloadrate')*1024 |
| 81 | Throttle.resetChunkSize(self) |
nothing calls this directly
no test coverage detected