fix: Format cooperative redeem reject using thiserror (#1716)

pull/1718/head
binarybaron 2 months ago committed by GitHub
parent 1f322b78c8
commit 85c4db1d75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -339,7 +339,7 @@ async fn next_state(
}
Ok(Rejected { reason, .. }) => {
tracing::error!(
?reason,
%reason,
"Alice rejected our request for cooperative XMR redeem"
);
return Err(reason)
@ -347,7 +347,7 @@ async fn next_state(
}
Err(error) => {
tracing::error!(
?error,
%error,
"Failed to request cooperative XMR redeem from Alice"
);
return Err(error)

Loading…
Cancel
Save