bigint-fron-seed: Remove unused eslint-disable-next-line's

This commit is contained in:
David Ernst
2025-04-29 18:00:03 -07:00
parent c4aa91de78
commit 1a4ca93f2c

View File

@@ -21,9 +21,7 @@ export async function bigint_from_seed(seed: string, max = CURVE.l): Promise<big
// 1. Get enough bits
while (bytes.byteLength < bytesNeeded + antibias_amount) {
// eslint-disable-next-line no-await-in-loop
const hash = await sha256(seed)
// eslint-disable-next-line no-param-reassign
seed = [...new Uint8Array(hash)].join(',')
bytes = appendBuffer(bytes, hash)
}