| 1590 | |
| 1591 | |
| 1592 | class msg_verack: |
| 1593 | __slots__ = () |
| 1594 | msgtype = b"verack" |
| 1595 | |
| 1596 | def __init__(self): |
| 1597 | pass |
| 1598 | |
| 1599 | def deserialize(self, f): |
| 1600 | pass |
| 1601 | |
| 1602 | def serialize(self): |
| 1603 | return b"" |
| 1604 | |
| 1605 | def __repr__(self): |
| 1606 | return "msg_verack()" |
| 1607 | |
| 1608 | |
| 1609 | class msg_addr: |
no outgoing calls
no test coverage detected