🎨 Add debug output to trace zlib error

This commit is contained in:
C-3PO 2018-06-24 01:37:10 +02:00
parent beb2d351da
commit 590dc39f84
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
3 changed files with 3 additions and 2 deletions

View file

@ -10,7 +10,7 @@ interface ISolidFileInfo {
files: ISolidFile[];
/** Length of one piece in bytes, e.g. 65536 for 64 KiB, and 4194304 for 4 MiB. */
'piece length': 65536 | 4194304;
/** Concatenated hashes of all pieces. */
/** Concatenated SHA1 hashes of all pieces, where each hash is 20 bytes long. */
pieces: string;
/** Whether the torrent is private, always 0. */
private: 0 | 1;