()
| 48 | } |
| 49 | |
| 50 | func NewExportBlockMetadata() *ExportBlockMetadata { |
| 51 | return &ExportBlockMetadata{ |
| 52 | Version: EXPORT_BLOCK_METADATA_VERSION, |
| 53 | CompressType: DEFAULT_COMPRESS_TYPE, |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | func (this *ExportBlockMetadata) Serialize(w io.Writer) error { |
| 58 | metadata := make([]byte, EXPORT_BLOCK_METADATA_LEN, EXPORT_BLOCK_METADATA_LEN) |
no outgoing calls
no test coverage detected