Removed deprecated keystore code.

This commit is contained in:
Revertron
2021-05-19 17:59:19 +02:00
parent 4e96eeed59
commit 7c38ee915f
3 changed files with 10 additions and 49 deletions
-7
View File
@@ -131,13 +131,6 @@ fn main() {
}
}
}
} else {
match Keystore::from_file(&settings.key_file, "") {
None => { warn!("Error loading keyfile from {}", &settings.key_file); }
Some(keystore) => {
keys.push(keystore);
}
}
}
let context = Context::new(env!("CARGO_PKG_VERSION").to_owned(), settings, keys, chain);
let context: Arc<Mutex<Context>> = Arc::new(Mutex::new(context));