Skip to content

Commit

Permalink
fix: removing unneeded async from func
Browse files Browse the repository at this point in the history
Signed-off-by: goncalo-frade-iohk <[email protected]>
  • Loading branch information
goncalo-frade-iohk committed Oct 23, 2024
1 parent b8a6855 commit 6449834
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public extension DIDCommAgent {
fromDID: DID,
toDID: DID,
claimFilters: [ClaimFilter]
) async throws -> RequestPresentation {
let rqstStr = try await edgeAgent.initiatePresentationRequest(
) throws -> RequestPresentation {
let rqstStr = try edgeAgent.initiatePresentationRequest(
type: type,
fromDID: fromDID,
toDID: toDID,
Expand Down
2 changes: 1 addition & 1 deletion EdgeAgentSDK/EdgeAgent/Sources/EdgeAgent+Credentials.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public extension EdgeAgent {
fromDID: DID,
toDID: DID,
claimFilters: [ClaimFilter]
) async throws -> String {
) throws -> String {
let request = try self.pollux.createPresentationRequest(
type: type,
toDID: toDID,
Expand Down

0 comments on commit 6449834

Please sign in to comment.