From ab24008c871d6f3438f26a7d55366ba7680e178a Mon Sep 17 00:00:00 2001 From: Jedrzej Stuczynski Date: Wed, 5 Feb 2020 16:29:07 +0000 Subject: [PATCH] Fixed compilation error due to old imports --- validator/src/main.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/validator/src/main.rs b/validator/src/main.rs index 4a12f05e5e..c47eb5e139 100644 --- a/validator/src/main.rs +++ b/validator/src/main.rs @@ -1,8 +1,4 @@ -use crate::validator::Config; -use crate::validator::Validator; -use clap::{App, Arg, ArgMatches, SubCommand}; -use log::*; -use toml; +use clap::{App, ArgMatches}; pub mod built_info; mod commands;