mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-11-09 19:10:36 +00:00
Update swap.rs
This commit is contained in:
parent
2824ebc893
commit
073baa9752
@ -337,11 +337,13 @@ async fn next_state(
|
||||
}
|
||||
}
|
||||
}
|
||||
Ok(Rejected { reason: error, .. }) => {
|
||||
return Err(error)
|
||||
Ok(Rejected { reason, .. }) => {
|
||||
tracing::error!(?reason, "Alice rejected our request for cooperative XMR redeem");
|
||||
return Err(reason)
|
||||
.context("Alice rejected our request for cooperative XMR redeem");
|
||||
}
|
||||
Err(error) => {
|
||||
tracing::error!(?error, "Failed to request cooperative XMR redeem from Alice");
|
||||
return Err(error)
|
||||
.context("Failed to request cooperative XMR redeem from Alice");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user