Skip to content

Commit

Permalink
fix: Format cooperative redeem reject using thiserror (comit-network#…
Browse files Browse the repository at this point in the history
  • Loading branch information
binarybaron authored Sep 9, 2024
1 parent 063f9db commit bd1a3db
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 @@ -440,15 +440,15 @@ async fn next_state(
);

tracing::error!(
?reason,
%reason,
"Alice rejected our request for cooperative XMR redeem"
);

return err;
}
Err(error) => {
tracing::error!(
?error,
%error,
"Failed to request cooperative XMR redeem from Alice"
);

Expand Down

0 comments on commit bd1a3db

Please sign in to comment.