chore: remove debugging

This commit is contained in:
thesimplekid
2023-06-24 23:00:18 -04:00
parent 471a4d5416
commit ca442186c1
2 changed files with 2 additions and 31 deletions

View File

@@ -188,7 +188,6 @@ impl FromStr for Token {
let s = s.replace("cashuA", "");
let decoded = general_purpose::STANDARD.decode(s)?;
let decoded_str = String::from_utf8(decoded)?;
println!("decode: {:?}", decoded_str);
let token: Token = serde_json::from_str(&decoded_str)?;
Ok(token)
}