Fix error message
This commit is contained in:
parent
a31a208dec
commit
7a66de84c0
1 changed files with 1 additions and 1 deletions
|
|
@ -507,7 +507,7 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
|
||||||
wallet.getTxNote({
|
wallet.getTxNote({
|
||||||
txid: txid
|
txid: txid
|
||||||
}, function(err, note) {
|
}, function(err, note) {
|
||||||
if (err || !note) return cb(true);
|
if (err) return cb(err);
|
||||||
return cb(null, note);
|
return cb(null, note);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue