fix inverted if condition

This commit is contained in:
Michele Balistreri 2021-10-07 13:52:30 +03:00
parent d5592d0e0a
commit 8fd18ec1c4
No known key found for this signature in database
GPG Key ID: E9567DA33A4F791A
1 changed files with 4 additions and 4 deletions

View File

@ -146,9 +146,9 @@ proc saveAccountAndLogin*(
var savedResult =
if account.isKeycard:
$status_go.saveAccountAndLogin(accountData, hashedPassword, settingsJSON, configJSON, $subaccountData)
else:
$status_go.saveAccountAndLoginWithKeycard(accountData, hashedPassword, settingsJSON, configJSON, $subaccountData, keycardWhisperKey)
else:
$status_go.saveAccountAndLogin(accountData, hashedPassword, settingsJSON, configJSON, $subaccountData)
let parsedSavedResult = savedResult.parseJson
let error = parsedSavedResult["error"].getStr
@ -243,9 +243,9 @@ proc login*(nodeAccount: NodeAccount, password: string, keycardWhisperKey: strin
let account = nodeAccount.toAccount
let loginResult =
if account.isKeycard:
$status_go.login($toJson(account), hashedPassword)
else:
$status_go.loginWithKeycard($toJson(account), hashedPassword, keycardWhisperKey)
else:
$status_go.login($toJson(account), hashedPassword)
let error = parseJson(loginResult)["error"].getStr