Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
mineme0110 committed Mar 2, 2023
1 parent 8d1181d commit 7ba370d
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ object BackgroundJobs {
_,
_,
_,
_
) =>
for {
didCommAgent <- buildDIDCommAgent(request.from)
Expand Down Expand Up @@ -197,6 +198,7 @@ object BackgroundJobs {
_,
_,
_,
_,
) =>
for {
credentialService <- ZIO.service[CredentialService]
Expand Down Expand Up @@ -269,6 +271,7 @@ object BackgroundJobs {
_,
_,
_,
_,
) =>
for {
didCommAgent <- buildDIDCommAgent(issue.from)
Expand Down Expand Up @@ -561,7 +564,6 @@ object BackgroundJobs {
case None => ZIO.fail(InvalidState("PresentationRecord in 'PresentationReceived' with no Presentation"))
case Some(p) =>
for {
_ <- ZIO.log(s"PresentationRecord: 'PresentationReceived' ")
didResolverService <- ZIO.service[JwtDidResolver]
credentialsValidationResult <- p.attachments.head.data match {
case Base64(data) =>
Expand Down Expand Up @@ -645,13 +647,12 @@ object BackgroundJobs {
}

} yield ()
case PresentationRecord(id, _, _, _, _, _, _, _, PresentationVerificationFailed, _, _, _, _) =>
case PresentationRecord(id, _, _, _, _, _, _, _, PresentationVerificationFailed, _, _, _, _, _, _, _) =>
ZIO.logDebug("PresentationRecord: PresentationVerificationFailed") *> ZIO.unit
case PresentationRecord(id, _, _, _, _, _, _, _, PresentationAccepted, _, _, _, _, _, _, _) =>
ZIO.logDebug("PresentationRecord: PresentationVerifiedAccepted") *> ZIO.unit
case PresentationRecord(id, _, _, _, _, _, _, _, PresentationVerified, _, _, _, _, _, _, _) =>
ZIO.logDebug("PresentationRecord: PresentationVerified") *> ZIO.unit
case PresentationRecord(id, _, _, _, _, _, _, _, PresentationAccepted, _, _, _, _) =>
ZIO.logDebug("PresentationRecord: PresentationVerifiedAccepted") *> ZIO.unit
case PresentationRecord(id, _, _, _, _, _, _, _, PresentationRejected, _, _, _, _, _, _, _) =>
ZIO.logDebug("PresentationRecord: PresentationRejected") *> ZIO.unit
}
Expand Down

0 comments on commit 7ba370d

Please sign in to comment.