This commit is contained in:
Matias Alejo Garcia 2016-08-25 17:56:30 -03:00
parent 9c6ccd3ede
commit 3db1a02bc3
No known key found for this signature in database
GPG Key ID: 02470DB551277AB3
2 changed files with 0 additions and 7 deletions

View File

@ -12,11 +12,6 @@
<span translate>Address Book</span>
</div>
<div class="item item-icon-left" href ui-sref="settings.feedback">
<i class="icon ion-ios-heart-outline"></i>
<span translate>Feedback</span>
</div>
<div class="item item-divider">Preferences</div>
<div class="item item-icon-left" href ui-sref="settings.language">

View File

@ -818,7 +818,6 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
};
root.getAddress = function(wallet, forceNew, cb) {
console.log('[walletService.js.786:wallet:]', wallet, forceNew); //TODO
var firstStep;
if (forceNew) {
@ -1062,7 +1061,6 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
if (err) return cb(err);
var code = getCode();
console.log('[walletService.js.948:code:]', code); //TODO
return cb(null, code);
});
});