mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-23 14:40:27 +01:00
chore: 🔧 change min htlc warnings
This commit is contained in:
parent
7cadc0938a
commit
c05f02ac9c
1 changed files with 2 additions and 2 deletions
|
@ -222,7 +222,7 @@ export const FeeCard: React.FC<FeeCardProps> = ({
|
||||||
);
|
);
|
||||||
|
|
||||||
const renderWarningText = (htlc_delta: number) => {
|
const renderWarningText = (htlc_delta: number) => {
|
||||||
if (htlc_delta <= 14) {
|
if (htlc_delta <= 18) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Separation />
|
<Separation />
|
||||||
|
@ -232,7 +232,7 @@ export const FeeCard: React.FC<FeeCardProps> = ({
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (htlc_delta <= 24) {
|
if (htlc_delta <= 34) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Separation />
|
<Separation />
|
||||||
|
|
Loading…
Add table
Reference in a new issue