Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
laruh committed Dec 26, 2024
1 parent 67321a6 commit 41f20f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm2src/mm2_main/src/lp_swap/taker_swap_v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2227,7 +2227,7 @@ impl<MakerCoin: MmCoin + MakerCoinSwapOpsV2, TakerCoin: MmCoin + TakerCoinSwapOp
let next_state = TakerPaymentRefundRequired {
taker_payment: self.taker_payment,
negotiation_data: self.negotiation_data,
reason: TakerPaymentRefundReason::MakerPaymentSpendNotConfirmedInTime(format!("{}", e)),
reason: TakerPaymentRefundReason::MakerPaymentSpendNotConfirmedInTime(e.to_string()),
};
return Self::change_state(next_state, state_machine).await;
}
Expand Down

0 comments on commit 41f20f9

Please sign in to comment.