We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ByteBuffer
Hmm, I see now that we do something like this:
auto json = jsiToValue<std::string>(rt, options, "json"); ObjectHandle out; ByteBuffer b = stringToByteBuffer(json); ErrorCode code = anoncreds_revocation_registry_from_json(b, &out); auto returnValue = createReturnValue(rt, code, &out);
which should be
auto json = jsiToValue<ByteBuffer>(rt, options, "json"); ObjectHandle out; ErrorCode code = anoncreds_revocation_registry_from_json(json, &out); auto returnValue = createReturnValue(rt, code, &out);
it does not change a lot of the code, but this is more inline way of doing it. (not an issue for now, but we can clean this up in the future).
Originally posted by @blu3beri in #175 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
which should be
it does not change a lot of the code, but this is more inline way of doing it. (not an issue for now, but we can clean this up in the future).
Originally posted by @blu3beri in #175 (comment)
The text was updated successfully, but these errors were encountered: