Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
gartnera committed May 10, 2024
1 parent a13ec72 commit 88aa40a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* [2100](https://github.com/zeta-chain/node/pull/2100) - cosmos v0.47 upgrade
* [2145](https://github.com/zeta-chain/node/pull/2145) - add `ibc` and `ibc-transfer` modules
* [2135](https://github.com/zeta-chain/node/pull/2135) - add develop build version logic
* [2113](https://github.com/zeta-chain/node/pull/2113) - add zetaclientd-supervisor
* [2113](https://github.com/zeta-chain/node/pull/2113) - add zetaclientd-supervisor process

### Refactor

Expand Down
6 changes: 3 additions & 3 deletions cmd/zetaclientd-supervisor/lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,14 +254,14 @@ func promptPasswords() (string, string, error) {
return "", "", err
}
fmt.Print("TSS Password: ")
TSSKeyPass, err := reader.ReadString('\n')
tssKeyPass, err := reader.ReadString('\n')
if err != nil {
return "", "", err
}

//trim delimiters
hotKeyPass = strings.TrimSuffix(hotKeyPass, "\n")
TSSKeyPass = strings.TrimSuffix(TSSKeyPass, "\n")
tssKeyPass = strings.TrimSuffix(tssKeyPass, "\n")

return hotKeyPass, TSSKeyPass, err
return hotKeyPass, tssKeyPass, err
}

0 comments on commit 88aa40a

Please sign in to comment.