config: update defaults

This commit is contained in:
tiero
2024-04-30 22:34:36 -05:00
parent 6cb79b6968
commit 9e42c7f9f9
2 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
name: Release ark
name: release
on:
release:
@@ -42,7 +42,7 @@ jobs:
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./server/build/arkd-linux-arm64
asset_name: arkd-linux-arm
asset_name: arkd-linux-arm64
asset_content_type: application/octet-stream
- name: Upload server binary (Darwin, AMD64)
@@ -103,7 +103,7 @@ jobs:
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./client/build/ark-darwin-arm64
asset_name: ark-darwin-arm
asset_name: ark-darwin-arm64
asset_content_type: application/octet-stream

View File

@@ -54,9 +54,9 @@ var (
defaultInsecure = true
defaultNetwork = "liquid"
defaultLogLevel = 4
defaultMinRelayFee = 30 // 0.1 sat/vbyte on Liquid
defaultRoundLifetime = 604800 // 1 week
defaultUnilateralExitDelay = 1440 // 1 day
defaultMinRelayFee = 30 // 0.1 sat/vbyte on Liquid
defaultRoundLifetime = 604672
defaultUnilateralExitDelay = 1024
)
func LoadConfig() (*Config, error) {