From 39c86c6c4452d9f0c7e1c3beedc4e912d7ae8a63 Mon Sep 17 00:00:00 2001 From: "Jeff Washington (jwash)" Date: Thu, 24 Feb 2022 12:12:29 -0600 Subject: [PATCH] fmt (#23329) --- ledger/src/blockstore.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ledger/src/blockstore.rs b/ledger/src/blockstore.rs index 6e3052dff..88700eeaa 100644 --- a/ledger/src/blockstore.rs +++ b/ledger/src/blockstore.rs @@ -1,8 +1,6 @@ //! The `blockstore` module provides functions for parallel verification of the //! Proof of History ledger as well as iterative read, append write, and random //! access read to a persistent file-based ledger. -pub use crate::{blockstore_db::BlockstoreError, blockstore_meta::SlotMeta}; -pub use rocksdb::properties as RocksProperties; use { crate::{ ancestor_iterator::AncestorIterator, @@ -67,6 +65,10 @@ use { thiserror::Error, trees::{Tree, TreeWalk}, }; +pub use { + crate::{blockstore_db::BlockstoreError, blockstore_meta::SlotMeta}, + rocksdb::properties as RocksProperties, +}; pub mod blockstore_purge;