Skip to content

Commit

Permalink
fix: fix clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
marshall-yale committed Jan 24, 2025
1 parent 414e008 commit 2d3f4a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/raw_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ impl<T: Read + Write> ElectrumApi for RawClient<T> {
self.increment_calls();

for (req_id, receiver) in missing_responses.iter() {
match self.recv(&receiver, *req_id) {
match self.recv(receiver, *req_id) {
Ok(mut resp) => answers.insert(req_id, resp["result"].take()),
Err(e) => {
// In case of error our sender could still be left in the map, depending on where
Expand Down

0 comments on commit 2d3f4a5

Please sign in to comment.