From f18886cf52174802fc59239e27f24ab91445b2e5 Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Fri, 11 Jan 2019 11:39:05 +0200 Subject: [PATCH] Remove misleading comment related to login flow --- src/status_im/accounts/login/core.cljs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/status_im/accounts/login/core.cljs b/src/status_im/accounts/login/core.cljs index 04b0656d1d..b3f2f5acea 100644 --- a/src/status_im/accounts/login/core.cljs +++ b/src/status_im/accounts/login/core.cljs @@ -17,14 +17,6 @@ [status-im.i18n :as i18n] [status-im.node.core :as node])) -;; login flow: -;; -;; - event `:ui/login` is dispatched -;; - node is initialized with user config or default config -;; - `node.started` signal is received, applying `:login` fx -;; - `:callback/login` event is dispatched, account is changed in datastore, web-data is cleared -;; - `:init.callback/account-change-success` event is dispatched - (defn login! [address password] (status/login address password #(re-frame/dispatch [:accounts.login.callback/login-success %])))