From e03e6a5fc19dd269a06e040bd1927cf9176ec22c Mon Sep 17 00:00:00 2001 From: Aleksandr Pantiukhov Date: Wed, 5 Sep 2018 16:02:20 +0200 Subject: [PATCH] Fix of status-im.models.network/action-handler to make tests pass again Signed-off-by: Aleksandr Pantiukhov --- src/status_im/models/network.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/models/network.cljs b/src/status_im/models/network.cljs index 4cb01f8513..55a32728e9 100644 --- a/src/status_im/models/network.cljs +++ b/src/status_im/models/network.cljs @@ -59,7 +59,7 @@ (defn- action-handler ([handler] - (handler nil nil)) + (action-handler handler nil nil)) ([handler data cofx] (when handler (handler data cofx))))