Merge pull request #3102 from cmgustavo/bug/fee-default01

Fix default fee: normal
This commit is contained in:
Matias Alejo Garcia 2015-08-21 10:53:24 -03:00
commit f5dc787f65
1 changed files with 2 additions and 2 deletions

View File

@ -344,7 +344,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
};
self.setCurrentFeeLevel = function(level) {
self.currentFeeLevel = level || configService.getSync().wallet.settings.feeLevel || 'priority';
self.currentFeeLevel = level || configService.getSync().wallet.settings.feeLevel || 'normal';
self.setSendMax();
};
@ -747,7 +747,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
$timeout(function() {
$rootScope.$apply();
});
};
self.recreate = function(cb) {