Fix error message

This commit is contained in:
Javier 2016-10-17 11:12:17 -03:00
commit 7a66de84c0

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