crypto: Remove a lingering println.

This commit is contained in:
Damir Jelić 2020-02-25 18:01:49 +01:00
parent 92067c400c
commit 7605f7e6e8

View file

@ -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)
}