diff options
| author | practicalswift <[email protected]> | 2017-11-17 15:35:15 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-11-17 15:35:15 +0100 |
| commit | f522fb7c9c121641ce552774e3993942106ec336 (patch) | |
| tree | 74eb441227c4b0040126b451a1a1aaa068b843c2 | |
| parent | Remove unused imports (diff) | |
| download | discoin-f522fb7c9c121641ce552774e3993942106ec336.tar.xz discoin-f522fb7c9c121641ce552774e3993942106ec336.zip | |
tests: Remove unused mininode functions deser_int_vector(f) and ser_int_vector(l)
| -rw-r--r-- | test/functional/test_framework/messages.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py index 40d02f3ee..eee24910c 100644 --- a/test/functional/test_framework/messages.py +++ b/test/functional/test_framework/messages.py @@ -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))) |