Skip to content
Merged
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
5 changes: 4 additions & 1 deletion grovedb-commitment-tree/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ pub use orchard::builder::{Builder, BundleType};
pub use orchard::bundle::BatchValidator;
// Bundle/Action types
pub use orchard::bundle::{Authorized, Flags};
// Bundle reconstruction: proof-size policy for `Bundle::try_from_parts`
pub use orchard::bundle::ProofSizeEnforcement;
// Proof creation/verification (requires orchard "circuit" feature)
pub use orchard::circuit::{ProvingKey, VerifyingKey};
// Key management
Expand Down Expand Up @@ -135,7 +137,8 @@ pub use orchard::{
zcash_note_encryption::{
try_compact_note_decryption, try_note_decryption, Domain, EphemeralKeyBytes, ShieldedOutput,
},
Action, Address as PaymentAddress, Bundle, Note, Proof, NOTE_COMMITMENT_TREE_DEPTH,
Action, ActionFromPartsError, Address as PaymentAddress, Bundle, Note, Proof,
NOTE_COMMITMENT_TREE_DEPTH,
Comment thread
shumkov marked this conversation as resolved.
};
#[cfg(feature = "sqlite")]
pub use rusqlite;
Expand Down
Loading