From 7685b430494025dc58ac72b0510f4eb04f207a1a Mon Sep 17 00:00:00 2001 From: Eric Dvorsak Date: Tue, 9 Jan 2018 11:38:48 +0100 Subject: [PATCH] use not= --- src/status_im/ui/screens/wallet/events.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/status_im/ui/screens/wallet/events.cljs b/src/status_im/ui/screens/wallet/events.cljs index a7ce74bc05..83bc0a0d67 100644 --- a/src/status_im/ui/screens/wallet/events.cljs +++ b/src/status_im/ui/screens/wallet/events.cljs @@ -87,7 +87,7 @@ (handlers/register-handler-fx :update-wallet (fn [{{:keys [web3 accounts/current-account-id network network-status] :as db} :db} [_ symbols]] - (when-not (= network-status :offline) + (when (not= network-status :offline) {:get-balance {:web3 web3 :account-id current-account-id :success-event :update-balance-success @@ -111,7 +111,7 @@ (handlers/register-handler-fx :update-transactions (fn [{{:keys [accounts/current-account-id network network-status] :as db} :db} _] - (when-not (= network-status :offline) + (when (not= network-status :offline) {:get-transactions {:account-id current-account-id :network network :success-event :update-transactions-success