add todos

This commit is contained in:
Iuri Matias 2020-05-20 16:07:48 -04:00
parent 23f72c77bc
commit 6e2f61b08e
2 changed files with 2 additions and 0 deletions

View File

@ -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())

View File

@ -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)