Skip to content
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

[feature/jmt (4/4]: In memory implementation of Jmt backed by storage traits + tests #894

Draft
wants to merge 1 commit into
base: feature/jmt-3-proof-generation-and-verification
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions fuel-merkle/src/common/storage_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ where
pub fn len(&self) -> usize {
self.map.len()
}

pub(crate) fn inner(&self) -> &HashMap<Type::OwnedKey, Type::OwnedValue> {
&self.map
}
}

impl<Type> StorageInspect<Type> for StorageMap<Type>
Expand Down
3 changes: 3 additions & 0 deletions fuel-merkle/src/jellyfish.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/// In Memory implementation of a Jellyfish Merkle Tree.
pub mod in_memory;

/// Integration of jmt::JellyfishMerkleTree with the Storage traits.
pub mod jmt_integration;

Expand Down
Loading
Loading