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

Method stream_serialize

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

Source from the content-addressed store, hash-verified

231
232 @classmethod
233 def stream_serialize(cls, inner_cls, objs, f, inner_params={}):
234 VarIntSerializer.stream_serialize(len(objs), f)
235 for obj in objs:
236 inner_cls.stream_serialize(obj, f, **inner_params)
237
238 @classmethod
239 def stream_deserialize(cls, inner_cls, f, inner_params={}):

Callers

nothing calls this directly

Calls 1

stream_serializeMethod · 0.45

Tested by

no test coverage detected