We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 414e008 commit 2d3f4a5Copy full SHA for 2d3f4a5
src/raw_client.rs
@@ -798,7 +798,7 @@ impl<T: Read + Write> ElectrumApi for RawClient<T> {
798
self.increment_calls();
799
800
for (req_id, receiver) in missing_responses.iter() {
801
- match self.recv(&receiver, *req_id) {
+ match self.recv(receiver, *req_id) {
802
Ok(mut resp) => answers.insert(req_id, resp["result"].take()),
803
Err(e) => {
804
// In case of error our sender could still be left in the map, depending on where
0 commit comments