Skip to content

Commit bbbd9c1

Browse files
Fix setCompletedAndFinalizedRandomSamplingChallengeRecord parameters
1 parent 8e11adb commit bbbd9c1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/service/proofing-service.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,9 @@ class ProofingService {
172172
latestChallenge.sentSuccessfully = false;
173173
latestChallenge.finalized = false;
174174
await this.repositoryModuleManager.setCompletedAndFinalizedRandomSamplingChallengeRecord(
175-
latestChallenge,
175+
latestChallenge.id,
176+
latestChallenge.sentSuccessfully,
177+
latestChallenge.finalized,
176178
);
177179
await this.prepareAndSendProof(blockchainId, identityId);
178180
}

0 commit comments

Comments
 (0)