From 7605f7e6e84475bd9ffb6966ee2ddb838a185e43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Tue, 25 Feb 2020 18:01:49 +0100 Subject: [PATCH] crypto: Remove a lingering println. --- src/crypto/machine.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/crypto/machine.rs b/src/crypto/machine.rs index 259a6fb9..fbee5e3d 100644 --- a/src/crypto/machine.rs +++ b/src/crypto/machine.rs @@ -155,7 +155,6 @@ impl OlmMachine { fn sign_json(&self, json: &Value) -> String { let canonical_json = cjson::to_string(json).expect(&format!("Can't serialize {} to canonical JSON", json)); - println!("HELLO SIGNING {}", canonical_json); self.account.sign(&canonical_json) }