From bf5eb0d2b5ba61e67873a9fdfe508b4932049ec7 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Mon, 5 Sep 2022 10:15:47 -0400 Subject: [PATCH] Cleanup unused import --- src/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store.rs b/src/store.rs index fd206a6..5e89e62 100644 --- a/src/store.rs +++ b/src/store.rs @@ -13,7 +13,7 @@ // limitations under the License. //! The MerkleDag backing store trait. -use std::{collections::BTreeMap, hash::Hash}; +use std::collections::BTreeMap; use crate::{hash::HashWriter, node::Node};