From e6350a0ea42e50e0a7db0274e7d50d95f69a3245 Mon Sep 17 00:00:00 2001 From: Dave Hrycyszyn Date: Mon, 16 Dec 2019 14:46:37 +0000 Subject: [PATCH] main: removing superseded comment --- src/main.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index b31f1e7b9a..842182f2c1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -122,10 +122,6 @@ fn run(matches: &ArgMatches) { // Start sending presence notifications in a separate thread thread::spawn(move || { - // TODO - // let key_bytes = self.public_key.to_bytes().to_vec(); - // let b64 = base64::encode_config(&key_bytes, base64::URL_SAFE); - // b64.to_string() let notifier = presence::Notifier::new(is_local.clone(), mix_socket_address, &key_pair); notifier.run(); });