Skip to content
This repository was archived by the owner on Sep 26, 2023. It is now read-only.

Commit 42354fa

Browse files
committed
cleanup
1 parent 20504b2 commit 42354fa

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

lib/src/blaze/trial_decryptions.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,11 @@ impl TrialDecryptions {
183183
let (tx, rx) = oneshot::channel();
184184
fulltx_fetcher.send((txid, tx)).unwrap();
185185

186-
// Discard the result, because this was not a wallet tx.
187-
rx.await.unwrap()?;
186+
workers.push(tokio::spawn(async move {
187+
// Discard the result, because this was not a wallet tx.
188+
rx.await.unwrap().map(|_r| ())
189+
}));
190+
188191
}
189192
}
190193
}

lib/src/grpc_connector.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ impl GrpcConnector {
196196
hash: txid.0.to_vec(),
197197
});
198198

199+
// log::info!("Full fetching {}", txid);
200+
199201
let mut client = client
200202
.get_client()
201203
.await

0 commit comments

Comments
 (0)