mirror of
https://github.com/apotdevin/thunderhub.git
synced 2025-02-22 14:22:33 +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) => {
|
||||
if (htlc_delta <= 14) {
|
||||
if (htlc_delta <= 18) {
|
||||
return (
|
||||
<>
|
||||
<Separation />
|
||||
|
@ -232,7 +232,7 @@ export const FeeCard: React.FC<FeeCardProps> = ({
|
|||
</>
|
||||
);
|
||||
}
|
||||
if (htlc_delta <= 24) {
|
||||
if (htlc_delta <= 34) {
|
||||
return (
|
||||
<>
|
||||
<Separation />
|
||||
|
|
Loading…
Add table
Reference in a new issue