| 1018 | |
| 1019 | |
| 1020 | class msg_verack(): |
| 1021 | command = b"verack" |
| 1022 | |
| 1023 | def __init__(self): |
| 1024 | pass |
| 1025 | |
| 1026 | def deserialize(self, f): |
| 1027 | pass |
| 1028 | |
| 1029 | def serialize(self): |
| 1030 | return b"" |
| 1031 | |
| 1032 | def __repr__(self): |
| 1033 | return "msg_verack()" |
| 1034 | |
| 1035 | |
| 1036 | class msg_addr(): |
no outgoing calls
no test coverage detected