fix default value for reserve fee

format
This commit is contained in:
dni ⚡
2022-12-07 15:58:33 +01:00
parent 32459168f4
commit b4e8659006
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ class Settings(BaseSettings):
lnbits_data_folder: str = Field(default="./data")
lnbits_database_url: str = Field(default=None)
lnbits_force_https: bool = Field(default=False)
lnbits_reserve_fee_min: int = Field(default=4000)
lnbits_reserve_fee_min: int = Field(default=2000)
lnbits_reserve_fee_percent: float = Field(default=1.0)
lnbits_service_fee: float = Field(default=0)
lnbits_hide_api: bool = Field(default=False)