From 5f430d2cc8cb22f052f107c551458f48fdbaca45 Mon Sep 17 00:00:00 2001 From: Goran Jovic Date: Tue, 22 May 2018 17:37:39 +0200 Subject: [PATCH] bug #4381 - fixed regression in wallet qr code scanner caused by network updates Signed-off-by: Igor Mandrigin --- src/status_im/ui/screens/wallet/choose_recipient/events.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/ui/screens/wallet/choose_recipient/events.cljs b/src/status_im/ui/screens/wallet/choose_recipient/events.cljs index 4dd7b1a40e..6480d8cc0d 100644 --- a/src/status_im/ui/screens/wallet/choose_recipient/events.cljs +++ b/src/status_im/ui/screens/wallet/choose_recipient/events.cljs @@ -38,7 +38,7 @@ :wallet/fill-request-from-url (fn [{{:keys [network] :as db} :db} [_ data]] (let [{:keys [view-id]} db - current-chain-id (get-in constants/default-networks [network :raw-config :NetworkId]) + current-chain-id (get-in constants/default-networks [network :config :NetworkId]) {:keys [address chain-id] :as details} (extract-details data current-chain-id) valid-network? (boolean (= current-chain-id chain-id))] (cond-> {:db db