Skip to content

Commit

Permalink
fix: remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
richardstrnad committed Oct 20, 2024
1 parent 1bf58c8 commit e485eb2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/websocket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,6 @@ impl EnhancedWebsocket {
request_id += 1;
let method = format!("{operation}Subscribe");
let body = json!({"jsonrpc":"2.0","id":request_id,"method":method,"params":params});
println!("subscription: {:#}", body);
ws.send(Message::Text(body.to_string())).await?;
requests_subscribe.insert(request_id, (operation, response_sender));
},
Expand Down

0 comments on commit e485eb2

Please sign in to comment.