MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / deserialize

Method deserialize

test/functional/test_framework/messages.py:321–325  ·  view source on GitHub ↗
(self, f)

Source from the content-addressed store, hash-verified

319 self.nSequence = nSequence
320
321 def deserialize(self, f):
322 self.prevout = COutPoint()
323 self.prevout.deserialize(f)
324 self.scriptSig = deser_string(f)
325 self.nSequence = struct.unpack("<I", f.read(4))[0]
326
327 def serialize(self):
328 r = b""

Callers

nothing calls this directly

Calls 4

deser_stringFunction · 0.85
COutPointClass · 0.70
deserializeMethod · 0.45
readMethod · 0.45

Tested by

no test coverage detected