Skip to content

Commit

Permalink
Merge pull request #6188 from cmgustavo/bug/find_new_tx
Browse files Browse the repository at this point in the history
Fix: open tx from recent transactions
  • Loading branch information
matiu authored Jun 6, 2017
2 parents e7e89a3 + cccc9da commit 39f974d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/services/walletService.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});

Expand Down

0 comments on commit 39f974d

Please sign in to comment.