MCPcopy Index your code
hub / github.com/petertodd/python-bitcoinlib / msg_verack

Class msg_verack

bitcoin/messages.py:171–186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169
170
171class msg_verack(MsgSerializable):
172 command = b"verack"
173
174 def __init__(self, protover=PROTO_VERSION):
175 super(msg_verack, self).__init__(protover)
176 self.protover = protover
177
178 @classmethod
179 def msg_deser(cls, f, protover=PROTO_VERSION):
180 return cls()
181
182 def msg_ser(self, f):
183 f.write(b"")
184
185 def __repr__(self):
186 return "msg_verack()"
187
188
189class msg_addr(MsgSerializable):

Callers 2

send-addrs-msg.pyFile · 0.90

Calls

no outgoing calls

Tested by 1