(self)
| 40 | self.lastCleaned = time.time() |
| 41 | |
| 42 | def initInvBloom(self): |
| 43 | if haveBloom: |
| 44 | # lock? |
| 45 | self.invBloom = BloomFilter(capacity=ObjectTracker.invInitialCapacity, |
| 46 | error_rate=ObjectTracker.invErrorRate) |
| 47 | |
| 48 | def initAddrBloom(self): |
| 49 | if haveBloom: |