Merge pull request #499 from JDonadio/fix/tx-error

Fix error message
This commit is contained in:
Matias Alejo Garcia 2016-10-17 11:21:28 -03:00 committed by GitHub
commit 4bc282fdd6

View file

@ -507,7 +507,7 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
wallet.getTxNote({
txid: txid
}, function(err, note) {
if (err || !note) return cb(true);
if (err) return cb(err);
return cb(null, note);
});
};