Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix iOS wrapper #201

Merged
merged 2 commits into from
Nov 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libvcx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "libvcx"
version = "0.13.0"
version = "0.13.1"
authors = ["Absa Group Limited", "Hyperledger Indy Contributors <hyperledger-indy@lists.hyperledger.org>"]
publish = false
description = "Absa's fork of HL LibVCX"
Expand Down
3 changes: 3 additions & 0 deletions wrappers/ios/vcx/ConnectMeVcx.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@ extern void VcxWrapperCommonNumberStringCallback(vcx_command_handle_t xcommand_h
- (void)credentialGetAttributes:(VcxHandle)credentialHandle
completion:(void (^)(NSError *error, NSString *attributes))completion;

- (void)credentialGetAttachment:(VcxHandle)credentialHandle
completion:(void (^)(NSError *error, NSString *attach))completion;

- (void)credentialSerialize:(NSInteger)credentialHandle
completion:(void (^)(NSError *error, NSString *state))completion;

Expand Down