fix wallet name

This commit is contained in:
JDonadio 2017-01-12 14:34:09 -03:00
parent dafd46c3a2
commit ecc72b7c39
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ angular.module('copayApp.controllers').controller('addressesController', functio
ongoingProcess.set('sendingByEmail', true);
$timeout(function() {
var body = 'Copay Wallet "' + $scope.walletName + '" Addresses\n Only Main Addresses are shown.\n\n';
var body = 'Copay Wallet "' + $scope.wallet.name + '" Addresses\n Only Main Addresses are shown.\n\n';
body += "\n";
body += $scope.allAddresses.map(function(v) {
return ('* ' + v.address + ' ' + 'xpub' + v.path.substring(1) + ' ' + formatDate(v.createdOn));