Skip to content

Commit 45c8588

Browse files
committed
joinstr: log error in Joinstr::start_coinjoin()
1 parent a3ddd3d commit 45c8588

File tree

1 file changed

+1
-0
lines changed
  • rust/joinstr/src/joinstr

1 file changed

+1
-0
lines changed

rust/joinstr/src/joinstr/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -801,6 +801,7 @@ impl Joinstr<'_> {
801801
let signer = signer.clone();
802802
thread::spawn(move || {
803803
if let Err(e) = cloned.start_coinjoin_blocking(pool, signer, || {}) {
804+
log::error!("Joinstr::start_coinjoin() start_coinjoin_blocking() falied: {e:?}");
804805
let mut inner = cloned.inner.lock().expect("poisoned");
805806
inner.error = Some(format!("{:?}", e));
806807
inner.step = Step::Failed;

0 commit comments

Comments
 (0)