Skip to content

Commit 6973b74

Browse files
removing default param
1 parent fa536c7 commit 6973b74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/js/services/walletService.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
805805
});
806806
};
807807

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

818-
root.startScan = function(wallet, cb, showMessage = true) {
818+
root.startScan = function(wallet, cb, showMessage) {
819819
cb = cb || function() {};
820820

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

0 commit comments

Comments
 (0)