chore: fix warnings (remove used imports)

This commit is contained in:
Matthew Little
2020-12-08 17:48:22 +01:00
parent 60af68af12
commit d569bded15

View File

@@ -1,12 +1,5 @@
use std::fs::File;
use std::io::prelude::*;
use std::io::LineWriter;
use std::io::Write;
use std::{
convert::TryFrom,
io::{self, BufReader, Cursor},
time::SystemTime,
};
use std::io::{self, BufReader};
use libflate::deflate;
@@ -14,8 +7,6 @@ use stacks::{
burnchains::{bitcoin::address::BitcoinAddress, Address},
chainstate::stacks::db::{AccountBalance, VestingSchedule},
chainstate::stacks::StacksAddress,
util::hash::Sha256Sum,
vm::types::StandardPrincipalData,
};
pub fn read_balances() -> Box<dyn Iterator<Item = AccountBalance>> {