(self)
| 94 | return |
| 95 | |
| 96 | def checkGetpubkey(self): |
| 97 | if len(self.data) < 42: |
| 98 | logger.info('getpubkey message doesn\'t contain enough data. Ignoring.') |
| 99 | raise BMObjectInvalidError() |
| 100 | |
| 101 | def checkPubkey(self): |
| 102 | if len(self.data) < 146 or len(self.data) > 440: # sanity check |
no test coverage detected