Return a CTransaction that is invalid per the subclass.
(self, *args, **kwargs)
| 80 | |
| 81 | @abc.abstractmethod |
| 82 | def get_tx(self, *args, **kwargs): |
| 83 | """Return a CTransaction that is invalid per the subclass.""" |
| 84 | pass |
| 85 | |
| 86 | |
| 87 | class OutputMissing(BadTxTemplate): |