crypto: Remove a lingering println.

master
Damir Jelić 2020-02-25 18:01:49 +01:00
parent 92067c400c
commit 7605f7e6e8
1 changed files with 0 additions and 1 deletions

View File

@ -155,7 +155,6 @@ impl OlmMachine {
fn sign_json(&self, json: &Value) -> String { fn sign_json(&self, json: &Value) -> String {
let canonical_json = let canonical_json =
cjson::to_string(json).expect(&format!("Can't serialize {} to canonical JSON", json)); cjson::to_string(json).expect(&format!("Can't serialize {} to canonical JSON", json));
println!("HELLO SIGNING {}", canonical_json);
self.account.sign(&canonical_json) self.account.sign(&canonical_json)
} }