From d569bded15af48d32bcd874c7c577ee2ed458b0c Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Tue, 8 Dec 2020 17:48:22 +0100 Subject: [PATCH] chore: fix warnings (remove used imports) --- stx-genesis/src/lib.rs | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/stx-genesis/src/lib.rs b/stx-genesis/src/lib.rs index d4984dc67..b72821b8c 100644 --- a/stx-genesis/src/lib.rs +++ b/stx-genesis/src/lib.rs @@ -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> {