diff --git a/.env.example b/.env.example index 7b6e852e..47558d4e 100644 --- a/.env.example +++ b/.env.example @@ -77,7 +77,7 @@ LNBITS_BACKEND_WALLET_CLASS=VoidWallet # just so you can see the UI before dealing with this file. # Invoice expiry for LND, CLN, Eclair, LNbits funding sources -LIGHTNING_INVOICE_EXPIRY=600 +LIGHTNING_INVOICE_EXPIRY=3600 # Set one of these blocks depending on the wallet kind you chose above: diff --git a/lnbits/settings.py b/lnbits/settings.py index a63d8021..645f8adc 100644 --- a/lnbits/settings.py +++ b/lnbits/settings.py @@ -199,7 +199,7 @@ class BoltzExtensionSettings(LNbitsSettings): class LightningSettings(LNbitsSettings): - lightning_invoice_expiry: int = Field(default=600) + lightning_invoice_expiry: int = Field(default=3600) class FundingSourcesSettings(