diff --git a/.github/workflows/ark.release.yaml b/.github/workflows/ark.release.yaml index 72fef84..3e5d8b8 100755 --- a/.github/workflows/ark.release.yaml +++ b/.github/workflows/ark.release.yaml @@ -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 diff --git a/server/internal/config/config.go b/server/internal/config/config.go index 3b3c8c4..9c635e2 100644 --- a/server/internal/config/config.go +++ b/server/internal/config/config.go @@ -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) {