Client: remove stray debug output

This commit is contained in:
Christian Kamm 2023-11-08 13:52:12 +01:00
parent 06dd834215
commit 8e1f512639
1 changed files with 0 additions and 1 deletions

View File

@ -134,7 +134,6 @@ async fn feed_data(
}, },
message = serum3_oo_sub_map.next() => { message = serum3_oo_sub_map.next() => {
if let Some(data) = message { if let Some(data) = message {
info!("got serum message");
let response = data.1.map_err_anyhow()?; let response = data.1.map_err_anyhow()?;
sender.send(Message::Account(AccountUpdate::from_rpc(response)?)).await.expect("sending must succeed"); sender.send(Message::Account(AccountUpdate::from_rpc(response)?)).await.expect("sending must succeed");
} else { } else {