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
The fn parse_parameters returns ZcashParameters, which now contains types such as PreparedVerifyingKey, which wrap the original types from bellman. However, the fn verify_single in bellman still takes the wrapped type: PreparedVerifyingKey<E: MultimellerLoop>.
parse_parameters
ZcashParameters
PreparedVerifyingKey
verify_single
PreparedVerifyingKey<E: MultimellerLoop>
Unfortunately, I couldn't think of a way to parse the params and then use them with verify_single.
The text was updated successfully, but these errors were encountered:
Oops, I'm now realizing I should have logged this in librustzcash instead. Too many tabs.
librustzcash
Sorry, something went wrong.
No branches or pull requests
The fn
parse_parameters
returnsZcashParameters
, which now contains types such asPreparedVerifyingKey
, which wrap the original types from bellman. However, the fnverify_single
in bellman still takes the wrapped type:PreparedVerifyingKey<E: MultimellerLoop>
.Unfortunately, I couldn't think of a way to parse the params and then use them with
verify_single
.The text was updated successfully, but these errors were encountered: