Skip to content

Commit

Permalink
fix(validation): Show correct max collateral in validation message
Browse files Browse the repository at this point in the history
  • Loading branch information
holzeis committed Feb 14, 2024
1 parent 4690d2e commit a6d726b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/lib/features/trade/channel_configuration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class _ChannelConfiguration extends State<ChannelConfiguration> {

if (maxCounterpartyCollateral.sats <
counterpartyCollateral.sats) {
return "Over limit: $counterpartyCollateral";
return "Over limit: $maxCounterpartyCollateral";
}

return null;
Expand Down

0 comments on commit a6d726b

Please sign in to comment.