From cccc9da5c81ba28246c116ed79bc9782a22ba7a2 Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Tue, 6 Jun 2017 15:38:26 -0300 Subject: [PATCH] Fix: open tx from recent transactions --- src/js/services/walletService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/services/walletService.js b/src/js/services/walletService.js index 0e4fe3029..a9d45f3ff 100644 --- a/src/js/services/walletService.js +++ b/src/js/services/walletService.js @@ -457,7 +457,7 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim // do not sync all history, just looking for a single TX. if (opts.limitTx) { - foundLimitTx = lodash.find(txsFromLocal, { + foundLimitTx = lodash.find(newTxs, { txid: opts.limitTx, });