(self)
| 73 | @Singleton |
| 74 | class ReceiveThrottle(Throttle): |
| 75 | def __init__(self): |
| 76 | Throttle.__init__(self, BMConfigParser().safeGetInt('bitmessagesettings', 'maxdownloadrate')*1024) |
| 77 | |
| 78 | def resetLimit(self): |
| 79 | with self.lock: |
nothing calls this directly
no test coverage detected