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

Method msg_deser

bitcoin/messages.py:382–385  ·  view source on GitHub ↗
(cls, f, protover=PROTO_VERSION)

Source from the content-addressed store, hash-verified

380
381 @classmethod
382 def msg_deser(cls, f, protover=PROTO_VERSION):
383 c = cls()
384 c.block = CBlock.stream_deserialize(f)
385 return c
386
387 def msg_ser(self, f):
388 self.block.stream_serialize(f)

Callers

nothing calls this directly

Calls 1

stream_deserializeMethod · 0.45

Tested by

no test coverage detected