Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yse committed Sep 13, 2024
1 parent 657894e commit 3897790
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/core/src/test_utils/refund.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl RefundHandler<SendSwap> for MockRefundHandler {
_is_cooperative: bool,
_fee_rate_msats_per_vbyte: Option<u32>,
) -> Result<String, PaymentError> {
unimplemented!();
Ok("refund-tx-id".to_string())
}

async fn prepare_refund(
Expand All @@ -47,7 +47,7 @@ impl RefundHandler<ChainSwap> for MockRefundHandler {
_is_cooperative: bool,
_fee_rate_msats_per_vbyte: Option<u32>,
) -> Result<String, PaymentError> {
unimplemented!();
Ok("refund-tx-id".to_string())
}

async fn prepare_refund(
Expand Down

0 comments on commit 3897790

Please sign in to comment.