Skip to content

Commit

Permalink
Merge branch 'comit-network:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
binarybaron authored Jul 16, 2024
2 parents 612784b + 85c4db1 commit 97788e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions swap/src/protocol/bob/swap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,15 +339,15 @@ async fn next_state(
}
Ok(Rejected { reason, .. }) => {
tracing::error!(
?reason,
%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,
%error,
"Failed to request cooperative XMR redeem from Alice"
);
return Err(error)
Expand Down

0 comments on commit 97788e6

Please sign in to comment.