Skip to content

Commit

Permalink
removing default param
Browse files Browse the repository at this point in the history
  • Loading branch information
proletesseract committed Jul 21, 2019
1 parent fa536c7 commit 6973b74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/services/walletService.js
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
});
};

root.recreate = function(wallet, cb, showMessage = true) {
root.recreate = function(wallet, cb, showMessage) {
$log.debug('Recreating wallet:', wallet.id);
if (showMessage) ongoingProcess.set('recreating', true);
wallet.recreateWallet(function(err) {
Expand All @@ -815,7 +815,7 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
});
};

root.startScan = function(wallet, cb, showMessage = true) {
root.startScan = function(wallet, cb, showMessage) {
cb = cb || function() {};

$log.debug('Scanning wallet ' + wallet.id);
Expand Down

0 comments on commit 6973b74

Please sign in to comment.