Skip to content

Commit

Permalink
Merge pull request #1301 from getlipa/fix/fix-reverse-swap-pending-state
Browse files Browse the repository at this point in the history
Fix ReverseSwap pending state
  • Loading branch information
gcomte authored Dec 12, 2024
2 parents 534347a + c0af220 commit 4b894f7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/activity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ impl Activity {
} = self
{
return reverse_swap_info.status == ReverseSwapStatus::Initial
|| reverse_swap_info.status == ReverseSwapStatus::InProgress
|| reverse_swap_info.status == ReverseSwapStatus::CompletedSeen;
|| reverse_swap_info.status == ReverseSwapStatus::InProgress;
}
if let Some(payment_info) = self.get_payment_info() {
return payment_info.payment_state.is_pending();
Expand Down

0 comments on commit 4b894f7

Please sign in to comment.