MCPcopy
hub / github.com/petertodd/python-bitcoinlib / stream_deserialize

Method stream_deserialize

bitcoin/core/serialize.py:239–244  ·  view source on GitHub ↗
(cls, inner_cls, f, inner_params={})

Source from the content-addressed store, hash-verified

237
238 @classmethod
239 def stream_deserialize(cls, inner_cls, f, inner_params={}):
240 n = VarIntSerializer.stream_deserialize(f)
241 r = []
242 for i in range(n):
243 r.append(inner_cls.stream_deserialize(f, **inner_params))
244 return r
245
246
247class uint256VectorSerializer(Serializer):

Callers

nothing calls this directly

Calls 1

stream_deserializeMethod · 0.45

Tested by

no test coverage detected