(cls, inner_cls, f, inner_params={})
| 237 | |
| 238 | @classmethod |
| 239 | def stream_deserialize(cls, inner_cls, f, inner_params={}): |
| 240 | n = VarIntSerializer.stream_deserialize(f) |
| 241 | r = [] |
| 242 | for i in range(n): |
| 243 | r.append(inner_cls.stream_deserialize(f, **inner_params)) |
| 244 | return r |
| 245 | |
| 246 | |
| 247 | class uint256VectorSerializer(Serializer): |
nothing calls this directly
no test coverage detected