Skip to content

Commit c1015b9

Browse files
committed
Lint
1 parent 01ef1c7 commit c1015b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/secp256k1-compat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ export function privateKeyTweakMul(
267267
): Uint8Array {
268268
assertBytes(privateKey, 32);
269269
assertBytes(tweak, 32);
270-
let bn = bytesToNumber(tweak);
270+
const bn = bytesToNumber(tweak);
271271
if (bn <= 1 || bn >= ORDER) {
272272
throw new Error("Tweak is zero or bigger than curve order");
273273
}

0 commit comments

Comments
 (0)