Skip to content

Commit

Permalink
fix(timeout): fix wrong variable name from desconstructing ceremony data
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlc03 committed Nov 2, 2023
1 parent b23376b commit 28abe70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/functions/timeout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const checkAndRemoveBlockingContributor = functions
const circuits = await getCeremonyCircuits(ceremony.id)

// Extract ceremony data.
const { timeoutMechanismType, penalty } = ceremony.data()!
const { timeoutType: timeoutMechanismType, penalty } = ceremony.data()!

for (const circuit of circuits) {
if (!circuit.data())
Expand Down

0 comments on commit 28abe70

Please sign in to comment.