| 1735 | return "msg_tx(tx=%s)" % (repr(self.tx)) |
| 1736 | |
| 1737 | class msg_wtxidrelay: |
| 1738 | __slots__ = () |
| 1739 | msgtype = b"wtxidrelay" |
| 1740 | |
| 1741 | def __init__(self): |
| 1742 | pass |
| 1743 | |
| 1744 | def deserialize(self, f): |
| 1745 | pass |
| 1746 | |
| 1747 | def serialize(self): |
| 1748 | return b"" |
| 1749 | |
| 1750 | def __repr__(self): |
| 1751 | return "msg_wtxidrelay()" |
| 1752 | |
| 1753 | |
| 1754 | class msg_no_witness_tx(msg_tx): |