(self)
| 50 | self.tag = self.data[payloadOffset:payloadOffset+32] |
| 51 | |
| 52 | def checkProofOfWorkSufficient(self): |
| 53 | # Let us check to make sure that the proof of work is sufficient. |
| 54 | if not protocol.isProofOfWorkSufficient(self.data): |
| 55 | logger.info('Proof of work is insufficient.') |
| 56 | raise BMObjectInsufficientPOWError() |
| 57 | |
| 58 | def checkEOLSanity(self): |
| 59 | # EOL sanity check |
no test coverage detected