-
Notifications
You must be signed in to change notification settings - Fork 3
feat(ffi): Add FFI types for Bls12381 #143
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
Conversation
| pub struct ValidatorAggregatedSignature(pub iota_types::ValidatorAggregatedSignature); | ||
|
|
||
| #[uniffi::export] | ||
| impl ValidatorAggregatedSignature { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need for a bitmap getter?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wasn't really sure how to handle it. I could just serialize the bytes for the getter but I can't just return the type.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm kind of lacking the context if it's useful to get it or not, in doubt I'd serialise it yeah
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Description
Adds FFI for Bls12381 types.
Closes #136