Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
fix(ios): prover delete credential should return void (#31)
Browse files Browse the repository at this point in the history
Signed-off-by: Berend Sliedrecht <[email protected]>
  • Loading branch information
berendsliedrecht authored Jan 13, 2022
1 parent 38db441 commit f5453b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/IndySdk.swift
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ class IndySdk : NSObject {
resolver resolve: @escaping RCTPromiseResolveBlock,
rejecter reject: @escaping RCTPromiseRejectBlock) -> Void {
let whNumber:Int32 = Int32(truncating:walletHandle)
IndyAnoncreds.proverDeleteCredentials(withId: credId, walletHandle: whNumber, completion: completionWithString(resolve, reject))
IndyAnoncreds.proverDeleteCredentials(withId: credId, walletHandle: whNumber, completion: completion(resolve, reject))
}

@objc func proverGetCredentialsForProofReq(_ proofReqJSON: String, walletHandle: NSNumber,
Expand Down

0 comments on commit f5453b9

Please sign in to comment.