MCPcopy Create free account
hub / github.com/ElementsProject/elements / deser_string_vector

Function deser_string_vector

test/functional/test_framework/messages.py:180–186  ·  view source on GitHub ↗
(f)

Source from the content-addressed store, hash-verified

178
179
180def deser_string_vector(f):
181 nit = deser_compact_size(f)
182 r = []
183 for _ in range(nit):
184 t = deser_string(f)
185 r.append(t)
186 return r
187
188
189def ser_string_vector(l):

Callers 3

deserializeMethod · 0.70
deserializeMethod · 0.70
deserializeMethod · 0.70

Calls 2

deser_compact_sizeFunction · 0.70
deser_stringFunction · 0.70

Tested by

no test coverage detected