We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36caea1 commit 35c6088Copy full SHA for 35c6088
packages/backend/src/functions/timeout.ts
@@ -281,7 +281,8 @@ export const resumeContributionAfterTimeoutExpiration = functions
281
if (status === ParticipantStatus.EXHUMED)
282
await participantDoc.ref.update({
283
status: ParticipantStatus.READY,
284
- lastUpdated: getCurrentServerTimestampInMillis()
+ lastUpdated: getCurrentServerTimestampInMillis(),
285
+ tempContributionData: {}
286
})
287
else logAndThrowError(SPECIFIC_ERRORS.SE_CONTRIBUTE_CANNOT_PROGRESS_TO_NEXT_CIRCUIT)
288
0 commit comments