You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Streamline visibility in mod kzg: currently it offers entities which can be obtained only from other modules which is confusing.
Problem Definition
fn open... are pub(crate) and it seems like it's the only way to get Proof in kzg10; of course, it is used in other modules, but it makes disentangling that thing quite confusing.
Proposal
Either pub those functions from kzg, either pub use entities from kzg in modules where they can actually be obtained and pub(crate) them in kzg.
For Admin Use
Not duplicate issue
Appropriate labels applied
Appropriate contributors tagged
Contributor assigned/self-assigned
The text was updated successfully, but these errors were encountered:
Summary
Streamline visibility in
mod kzg
: currently it offers entities which can be obtained only from other modules which is confusing.Problem Definition
fn open...
arepub(crate)
and it seems like it's the only way to getProof
inkzg10
; of course, it is used in other modules, but it makes disentangling that thing quite confusing.Proposal
Either
pub
those functions fromkzg
, eitherpub use
entities fromkzg
in modules where they can actually be obtained andpub(crate)
them inkzg
.For Admin Use
The text was updated successfully, but these errors were encountered: