Merge pull request #3102 from cmgustavo/bug/fee-default01
Fix default fee: normal
This commit is contained in:
commit
f5dc787f65
1 changed files with 2 additions and 2 deletions
|
|
@ -344,7 +344,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
};
|
};
|
||||||
|
|
||||||
self.setCurrentFeeLevel = function(level) {
|
self.setCurrentFeeLevel = function(level) {
|
||||||
self.currentFeeLevel = level || configService.getSync().wallet.settings.feeLevel || 'priority';
|
self.currentFeeLevel = level || configService.getSync().wallet.settings.feeLevel || 'normal';
|
||||||
self.setSendMax();
|
self.setSendMax();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -747,7 +747,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
$rootScope.$apply();
|
$rootScope.$apply();
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
self.recreate = function(cb) {
|
self.recreate = function(cb) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue