show feelevel, remove arrow, add margin left to memo
This commit is contained in:
parent
237cc2f58c
commit
9030eba0b8
2 changed files with 7 additions and 8 deletions
|
|
@ -35,7 +35,7 @@ angular.module('copayApp.controllers').controller('confirmController', function(
|
|||
$scope.data = {};
|
||||
|
||||
var config = configService.getSync().wallet;
|
||||
$scope.feeLevel = config.settings ? config.settings.feeLevel : '';
|
||||
$scope.feeLevel = config.settings && config.settings.feeLevel ? config.settings.feeLevel : 'normal';
|
||||
|
||||
$scope.toAmount = parseInt($scope.toAmount);
|
||||
$scope.amountStr = txFormatService.formatAmountStr($scope.toAmount);
|
||||
|
|
@ -273,7 +273,7 @@ angular.module('copayApp.controllers').controller('confirmController', function(
|
|||
txp.message = description;
|
||||
txp.payProUrl = paypro;
|
||||
txp.excludeUnconfirmedUtxos = config.spendUnconfirmed ? false : true;
|
||||
txp.feeLevel = config.settings.feeLevel || 'normal';
|
||||
txp.feeLevel = config.settings && config.settings.feeLevel ? config.settings.feeLevel : 'normal';
|
||||
txp.dryRun = dryRun;
|
||||
|
||||
walletService.createTx(wallet, txp, function(err, ctxp) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue