(self, f, include_witness=True)
| 679 | return self |
| 680 | |
| 681 | def stream_serialize(self, f, include_witness=True): |
| 682 | super(CBlock, self).stream_serialize(f) |
| 683 | VectorSerializer.stream_serialize(CTransaction, self.vtx, f, dict(include_witness=include_witness)) |
| 684 | |
| 685 | def get_header(self): |
| 686 | """Return the block header |
nothing calls this directly
no test coverage detected