Skip to content

Commit

Permalink
feat(prism-agent): integrate latest pollux version (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
bvoiturier authored Dec 15, 2022
1 parent 4298cf1 commit d199f0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions prism-agent/service/project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ object Dependencies {
val zioInteropCats = "3.3.0" // scala-steward:off
val akka = "2.6.20"
val akkaHttp = "10.2.9"
val castor = "0.5.0"
val pollux = "0.11.0"
val castor = "0.5.1"
val pollux = "0.12.0"
val connect = "0.5.0"
val bouncyCastle = "1.70"
val logback = "1.4.5"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import java.io.IOException

import zhttp.service._
import zhttp.http._
import io.iohk.atala.pollux.vc.jwt.JwtCredential
import io.iohk.atala.pollux.vc.jwt.W3CCredential
import io.iohk.atala.pollux.core.model.PresentationRecord
import io.iohk.atala.pollux.core.service.PresentationService
import io.iohk.atala.pollux.core.model.error.PresentationError
Expand Down Expand Up @@ -138,7 +138,7 @@ object BackgroundJobs {
issuer,
Instant.now()
)
signedJwtCredential = JwtCredential.toEncodedJwt(w3Credential, issuer)
signedJwtCredential = W3CCredential.toEncodedJwt(w3Credential, issuer)
issueCredential = IssueCredential.build(
fromDID = issue.from,
toDID = issue.to,
Expand Down

0 comments on commit d199f0d

Please sign in to comment.