Skip to content

Commit

Permalink
config: update defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
tiero committed May 1, 2024
1 parent 6cb79b6 commit 9e42c7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ark.release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release ark
name: release

on:
release:
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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


Expand Down
6 changes: 3 additions & 3 deletions server/internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 9e42c7f

Please sign in to comment.