Skip to content

Commit

Permalink
fix: unmet fee reserve check on wallet page (#859)
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz authored Dec 8, 2024
1 parent 65ac45a commit 4dbbd34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/screens/wallet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function Wallet() {
!!channels?.length &&
channels?.every(
(channel) =>
channel.localBalance < channel.unspendablePunishmentReserve
channel.localBalance < channel.unspendablePunishmentReserve * 1000
) &&
!showMigrateCard && (
<Alert>
Expand Down

0 comments on commit 4dbbd34

Please sign in to comment.