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

Method stream_serialize

bitcoin/core/__init__.py:326–328  ·  view source on GitHub ↗
(self, f)

Source from the content-addressed store, hash-verified

324 return CTxWitness(vtxinwit)
325
326 def stream_serialize(self, f):
327 for i in range(len(self.vtxinwit)):
328 self.vtxinwit[i].stream_serialize(f)
329
330 def __repr__(self):
331 return "CTxWitness(%s)" % (','.join(repr(w) for w in self.vtxinwit))

Callers

nothing calls this directly

Calls 1

stream_serializeMethod · 0.45

Tested by

no test coverage detected