tests: Remove unused mininode functions deser_int_vector(f) and ser_int_vector(l)

This commit is contained in:
practicalswift 2017-11-17 15:35:15 +01:00
parent 0f3b752ec7
commit f522fb7c9c
1 changed files with 0 additions and 15 deletions

View File

@ -167,21 +167,6 @@ def ser_string_vector(l):
return r
def deser_int_vector(f):
nit = deser_compact_size(f)
r = []
for i in range(nit):
t = struct.unpack("<i", f.read(4))[0]
r.append(t)
return r
def ser_int_vector(l):
r = ser_compact_size(len(l))
for i in l:
r += struct.pack("<i", i)
return r
# Deserialize from a hex string representation (eg from RPC)
def FromHex(obj, hex_string):
obj.deserialize(BytesIO(hex_str_to_bytes(hex_string)))