We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 475ddfb commit 7243731Copy full SHA for 7243731
bitcoin/core/serialize.py
@@ -236,6 +236,11 @@ def stream_deserialize(cls, f):
236
237
class VectorSerializer(Serializer):
238
"""Base class for serializers of object vectors"""
239
+
240
+ # FIXME: stream_(de)serialize don't match the signatures of the base class
241
+ # due to the inner_cls parameter. This probably isn't optimal API design
242
+ # and should be rethought at some point.
243
244
@classmethod
245
def stream_serialize(cls, inner_cls, objs, f):
246
VarIntSerializer.stream_serialize(len(objs), f)
0 commit comments