Skip to content

Commit

Permalink
refactor(ssz-utils): Add return type to `computeSyncCommitteePeriodAt
Browse files Browse the repository at this point in the history
  • Loading branch information
kkirkov committed Aug 6, 2024
1 parent efaabed commit 60a23bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/typescript/ts-utils/ssz-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export async function getBlockHeaderFromUpdate(head) {
export function computeSyncCommitteePeriodAt(
slot: bigint,
slots_per_period: bigint,
) {
): bigint {
return slot / slots_per_period;
}

Expand Down

0 comments on commit 60a23bd

Please sign in to comment.