Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

chore: remove dead code #63

Merged
merged 1 commit into from
Apr 29, 2024
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
6 changes: 0 additions & 6 deletions storage-node/src/storage_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ pub struct StorageManager<C: DataStoreCache> {
data_store_caches: Vec<C>,
}

// fn calculate_hash<T: Hash>(t: &T) -> u64 {
// let mut s = DefaultHasher::new();
// t.hash(&mut s);
// s.finish()
// }

impl<C: DataStoreCache> StorageManager<C> {
pub fn new(data_store_caches: Vec<C>) -> Self {
Self { data_store_caches }
Expand Down
Loading