(self)
| 241 | return True |
| 242 | |
| 243 | def __repr__(self): |
| 244 | if self.nValue >= 0: |
| 245 | return "CTxOut(%s*COIN, %r)" % (str_money_value(self.nValue), self.scriptPubKey) |
| 246 | else: |
| 247 | return "CTxOut(%d, %r)" % (self.nValue, self.scriptPubKey) |
| 248 | |
| 249 | @classmethod |
| 250 | def from_txout(cls, txout): |
nothing calls this directly
no test coverage detected