Skip to content

Commit

Permalink
fixed proof feature
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer committed Sep 27, 2023
1 parent e3d4866 commit 79f8334
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions grovedb/src/element/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
//! Helpers
//! Implements helper functions in Element
#[cfg(feature = "full")]
use grovedb_merk::tree::kv::{
ValueDefinedCostType,
ValueDefinedCostType::{LayeredValueDefinedCost, SpecializedValueDefinedCost},
Expand Down
1 change: 1 addition & 0 deletions grovedb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ pub use grovedb_merk::estimated_costs::{
pub use grovedb_merk::proofs::query::query_item::QueryItem;
#[cfg(any(feature = "full", feature = "verify"))]
pub use grovedb_merk::proofs::Query;
#[cfg(feature = "full")]
use grovedb_merk::tree::kv::ValueDefinedCostType;
#[cfg(feature = "full")]
use grovedb_merk::{
Expand Down
1 change: 1 addition & 0 deletions merk/src/proofs/query/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ use {super::Op, std::collections::LinkedList};
use super::Node;
#[cfg(any(feature = "full", feature = "verify"))]
use crate::error::Error;
#[cfg(feature = "full")]
use crate::tree::kv::ValueDefinedCostType;
#[cfg(feature = "full")]
use crate::tree::{Fetch, Link, RefWalker};
Expand Down
1 change: 1 addition & 0 deletions merk/src/tree/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ pub use walk::{Fetch, RefWalker, Walker};

#[cfg(feature = "full")]
use crate::tree::kv::ValueDefinedCostType;
#[cfg(feature = "full")]
use crate::tree::kv::ValueDefinedCostType::{LayeredValueDefinedCost, SpecializedValueDefinedCost};
#[cfg(feature = "full")]
use crate::{error::Error, Error::Overflow};
Expand Down

0 comments on commit 79f8334

Please sign in to comment.