-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(prism-agent): refresh state from DLT before returning result
- Loading branch information
Pat Losoponkul
committed
Dec 2, 2022
1 parent
d2c8684
commit 3d45d0b
Showing
2 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
...et-api/src/main/scala/io/iohk/atala/agent/walletapi/model/error/ListManagedDIDError.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package io.iohk.atala.agent.walletapi.model.error | ||
|
||
import io.iohk.atala.castor.core.model.error.DIDOperationError | ||
|
||
sealed trait ListManagedDIDError | ||
|
||
object ListManagedDIDError { | ||
final case class WalletStorageError(cause: Throwable) extends ListManagedDIDError | ||
final case class OperationError(cause: DIDOperationError) extends ListManagedDIDError | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters