Skip to content

Commit

Permalink
Fix: open tx from recent transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgustavo committed Jun 6, 2017
1 parent e7e89a3 commit cccc9da
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 cccc9da

Please sign in to comment.