Fix: open tx from recent transactions

This commit is contained in:
Gustavo Maximiliano Cortez 2017-06-06 15:38:26 -03:00
parent e7e89a32bf
commit cccc9da5c8
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 1 additions and 1 deletions

View File

@ -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,
});