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

Method serialize

bitcoin/core/serialize.py:169–172  ·  view source on GitHub ↗
(cls, obj)

Source from the content-addressed store, hash-verified

167
168 @classmethod
169 def serialize(cls, obj):
170 f = BytesIO()
171 cls.stream_serialize(obj, f)
172 return f.getvalue()
173
174 @classmethod
175 def deserialize(cls, buf):

Callers 15

fundrawtransactionMethod · 0.45
sendrawtransactionMethod · 0.45
signrawtransactionMethod · 0.45
submitblockMethod · 0.45
stream_serializeMethod · 0.45
insertMethod · 0.45
containsMethod · 0.45
RawSignatureHashFunction · 0.45
SignatureHashFunction · 0.45
GetTxidMethod · 0.45
calc_weightMethod · 0.45

Calls 1

stream_serializeMethod · 0.45