grooming: use cleanup, remove some dead code (bp #8324) (#8326)

automerge
This commit is contained in:
mergify[bot]
2020-02-18 21:06:56 -08:00
committed by GitHub
parent 72cb0b7c9e
commit a008748d9d
5 changed files with 41 additions and 50 deletions

View File

@@ -1,9 +1,12 @@
use solana_runtime::accounts_db::AccountStorageEntry;
use solana_runtime::bank::BankSlotDelta;
use solana_runtime::{accounts_db::AccountStorageEntry, bank::BankSlotDelta};
use solana_sdk::clock::Slot;
use std::path::PathBuf;
use std::sync::mpsc::{Receiver, SendError, Sender};
use std::sync::Arc;
use std::{
path::PathBuf,
sync::{
mpsc::{Receiver, SendError, Sender},
Arc,
},
};
use tempfile::TempDir;
pub type SnapshotPackageSender = Sender<SnapshotPackage>;