mirror of
https://github.com/status-im/status-lib.git
synced 2025-01-12 05:24:30 +00:00
fix inverted if condition
(cherry picked from commit 8fd18ec1c43c6c976157f18c4d7ad3e73fea7e8a)
This commit is contained in:
parent
f6c163a6d7
commit
d852f24a0a
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user