fix log messages

This commit is contained in:
Gabriel Bazán 2016-10-17 11:15:36 -03:00
commit 6b7a99939e
4 changed files with 7 additions and 7 deletions

View file

@ -29,7 +29,7 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
function updateMemo() {
walletService.getTxNote(wallet, $scope.btx.txid, function(err, note) {
if (err) {
$log.warn('Could not fetch transaction note ' + err);
$log.warn('Could not fetch transaction note: ' + err);
return;
}