Skip to content

Commit 2018db5

Browse files
committed
fix brackets
1 parent 4a1018f commit 2018db5

File tree

1 file changed

+3
-5
lines changed
  • packages/beacon-node/test/spec/bls

1 file changed

+3
-5
lines changed

packages/beacon-node/test/spec/bls/bls.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,9 @@ function aggregate(input: string[]): string {
7171
function fast_aggregate_verify(input: {pubkeys: string[]; message: string; signature: string}): boolean | null {
7272
const {pubkeys, message, signature} = input;
7373
try {
74-
return (
75-
fastAggregateVerify(
76-
fromHexString(message),
77-
pubkeys.map((hex) => PublicKey.fromHex(hex), true)
78-
),
74+
return fastAggregateVerify(
75+
fromHexString(message),
76+
pubkeys.map((hex) => PublicKey.fromHex(hex, true)),
7977
Signature.fromHex(signature, true)
8078
);
8179
} catch (_e) {

0 commit comments

Comments
 (0)