Workaround fix password issues on Windows.

This commit is contained in:
cheatfate 2020-08-21 12:47:35 +03:00 committed by zah
parent 678a7efaaa
commit 5fc07fef75
1 changed files with 12 additions and 4 deletions

View File

@ -187,8 +187,16 @@ proc saveWallet*(wallet: Wallet, outWalletPath: string): Result[void, string] =
ok() ok()
proc readPasswordInput(prompt: string, password: var TaintedString): bool = proc readPasswordInput(prompt: string, password: var TaintedString): bool =
try: readPasswordFromStdin(prompt, password) try:
except IOError: false when defined(windows):
# readPasswordFromStdin() on Windows always returns `false`.
# https://github.com/nim-lang/Nim/issues/15207
discard readPasswordFromStdin(prompt, password)
true
else:
readPasswordFromStdin(prompt, password)
except IOError as exc:
false
proc setStyleNoError(styles: set[Style]) = proc setStyleNoError(styles: set[Style]) =
when defined(windows): when defined(windows):