Skip to content

Commit

Permalink
feat: expose store (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Sep 6, 2024
1 parent 994268e commit 4ba2812
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/host/src/kv/mem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ use std::collections::HashMap;
/// development purposes.
#[derive(Default, Clone, Debug, Eq, PartialEq)]
pub struct MemoryKeyValueStore {
store: HashMap<B256, Vec<u8>>,
/// The underlying store.
pub store: HashMap<B256, Vec<u8>>,
}

impl MemoryKeyValueStore {
Expand Down

0 comments on commit 4ba2812

Please sign in to comment.