add todos
This commit is contained in:
parent
23f72c77bc
commit
6e2f61b08e
|
@ -89,6 +89,7 @@ proc storeAccountAndLogin(events: EventEmitter, selectedAccount: string, passwor
|
|||
events.emit("node:ready", Args())
|
||||
echo "Account saved succesfully"
|
||||
|
||||
# TODO: this is temporary and will be removed once accounts import and creation is working
|
||||
proc generateRandomAccountAndLogin*(events: EventEmitter) =
|
||||
discard status_test.setupNewAccount()
|
||||
events.emit("node:ready", Args())
|
||||
|
|
|
@ -60,5 +60,6 @@ QtObject:
|
|||
proc storeAccountAndLogin(self: OnboardingView, selectedAccount: string, password: string): string {.slot.} =
|
||||
result = self.doStoreAccountAndLogin(self.events, selectedAccount, password)
|
||||
|
||||
# TODO: this is temporary and will be removed once accounts import and creation is working
|
||||
proc generateRandomAccountAndLogin*(self: OnboardingView) {.slot.} =
|
||||
self.doGenerateRandomAccountAndLogin(self.events)
|
||||
|
|
Loading…
Reference in New Issue