From 661316cf5bf347695ec1d89c344ffd9ceb6c0b28 Mon Sep 17 00:00:00 2001 From: Arya Date: Thu, 24 Oct 2024 20:30:10 -0400 Subject: [PATCH] condenses imports --- .../disk_format/upgrade/track_tx_locs_by_spends.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/zebra-state/src/service/finalized_state/disk_format/upgrade/track_tx_locs_by_spends.rs b/zebra-state/src/service/finalized_state/disk_format/upgrade/track_tx_locs_by_spends.rs index aa309f1c1..7156442bb 100644 --- a/zebra-state/src/service/finalized_state/disk_format/upgrade/track_tx_locs_by_spends.rs +++ b/zebra-state/src/service/finalized_state/disk_format/upgrade/track_tx_locs_by_spends.rs @@ -7,13 +7,12 @@ use rayon::iter::{IntoParallelIterator, ParallelIterator}; use zebra_chain::block::Height; -use crate::service::finalized_state::ZebraDb; -use crate::service::non_finalized_state::Chain; -use crate::service::read; -use crate::Spend; +use crate::{ + service::{finalized_state::ZebraDb, non_finalized_state::Chain, read}, + Spend, +}; -use super::super::super::DiskWriteBatch; -use super::CancelFormatChange; +use super::{super::super::DiskWriteBatch, CancelFormatChange}; /// Runs disk format upgrade for tracking transaction locations by their inputs and revealed nullifiers. ///