From fb0e71946fc725cf0e17392f303d3e908f575566 Mon Sep 17 00:00:00 2001 From: Brooks Prumo Date: Tue, 1 Feb 2022 17:34:11 -0600 Subject: [PATCH] Cleanup use declaration (#22875) --- runtime/src/serde_snapshot.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runtime/src/serde_snapshot.rs b/runtime/src/serde_snapshot.rs index 5c21fd2b7..f4fdd193f 100644 --- a/runtime/src/serde_snapshot.rs +++ b/runtime/src/serde_snapshot.rs @@ -42,6 +42,7 @@ use { }, thread::Builder, }, + storage::{SerializableStorage, SerializedAppendVecId}, }; mod newer; @@ -49,8 +50,6 @@ mod storage; mod tests; mod utils; -use storage::{SerializableStorage, SerializedAppendVecId}; - // a number of test cases in accounts_db use this #[cfg(test)] pub(crate) use tests::reconstruct_accounts_db_via_serialization;