in src/QldbHash.ts [33:38]
constructor(qldbHash: Uint8Array) {
if (qldbHash.length !== HASH_SIZE || qldbHash.length === 0) {
throw new RangeError(`Hash must be either empty or ${HASH_SIZE} bytes long.`);
}
this._qldbHash = qldbHash;
}