From 30a79c88bb6cd79701911f928ee2db7a22fbe301 Mon Sep 17 00:00:00 2001 From: Dmitry Novotochinov Date: Thu, 5 Jul 2018 18:00:02 +0300 Subject: [PATCH] [#4857] Update transactions when navigate to tx details from /send message Signed-off-by: Goran Jovic --- src/status_im/chat/views/message/message.cljs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/status_im/chat/views/message/message.cljs b/src/status_im/chat/views/message/message.cljs index f4833e2d79..5bb313352e 100644 --- a/src/status_im/chat/views/message/message.cljs +++ b/src/status_im/chat/views/message/message.cljs @@ -62,6 +62,7 @@ (letsubs [confirmed? [:transaction-confirmed? tx-hash] tx-exists? [:wallet-transaction-exists? tx-hash]] [react/touchable-highlight {:on-press #(when tx-exists? + (re-frame/dispatch [:update-transactions]) (re-frame/dispatch [:show-transaction-details tx-hash]))} [react/view style/command-send-status-container [vector-icons/icon (if confirmed? :icons/check :icons/dots)