Workaround fix password issues on Windows.
This commit is contained in:
parent
678a7efaaa
commit
5fc07fef75
|
@ -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):
|
||||||
|
|
Loading…
Reference in New Issue