Merge pull request #6188 from cmgustavo/bug/find_new_tx

Fix: open tx from recent transactions
This commit is contained in:
Matias Alejo Garcia 2017-06-06 20:41:53 +02:00 committed by GitHub
commit 39f974dd50
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,
});