Skip to content

Commit

Permalink
Merge pull request #36 from Impa10r/v1.3.6
Browse files Browse the repository at this point in the history
v1.3.6
  • Loading branch information
Impa10r authored May 14, 2024
2 parents 44bc64f + e68dd0f commit 405805f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Versions

## 1.3.6

- Fix Elements host and port values passed via Env

## 1.3.5

- Estimate peg-in transaction size, total fee and PPM
Expand Down
8 changes: 8 additions & 0 deletions cmd/psweb/config/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ func Load(dataDir string) {
Config.ElementsDirMapped = os.Getenv("ELEMENTS_FOLDER_MAPPED")
}

if os.Getenv("ELEMENTS_PORT") != "" {
Config.ElementsPort = os.Getenv("ELEMENTS_PORT")
}

if os.Getenv("ELEMENTS_HOST") != "" {
Config.ElementsHost = os.Getenv("ELEMENTS_HOST")
}

// different defaults for LND and CLN
loadDefaults(currentUser.HomeDir, dataDir)

Expand Down
2 changes: 1 addition & 1 deletion cmd/psweb/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
"github.com/gorilla/mux"
)

const version = "v1.3.5"
const version = "v1.3.6"

type AliasCache struct {
PublicKey string
Expand Down

0 comments on commit 405805f

Please sign in to comment.