Skip to content

Commit

Permalink
chore: 🔧 change min htlc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
apotdevin committed Jul 17, 2020
1 parent 7cadc09 commit c05f02a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/fees/FeeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ export const FeeCard: React.FC<FeeCardProps> = ({
);

const renderWarningText = (htlc_delta: number) => {
if (htlc_delta <= 14) {
if (htlc_delta <= 18) {
return (
<>
<Separation />
Expand All @@ -232,7 +232,7 @@ export const FeeCard: React.FC<FeeCardProps> = ({
</>
);
}
if (htlc_delta <= 24) {
if (htlc_delta <= 34) {
return (
<>
<Separation />
Expand Down

0 comments on commit c05f02a

Please sign in to comment.