fix sendmax
This commit is contained in:
parent
44cd3cd495
commit
bdf0f59427
1 changed files with 3 additions and 1 deletions
|
|
@ -243,13 +243,15 @@ angular.module('copayApp.controllers').controller('confirmController', function(
|
||||||
updateAmount();
|
updateAmount();
|
||||||
refresh();
|
refresh();
|
||||||
|
|
||||||
|
// End of quick refresh, before wallet is selected.
|
||||||
|
if (!wallet)return cb();
|
||||||
|
|
||||||
feeService.getFeeRate(tx.network, tx.feeLevel, function(err, feeRate) {
|
feeService.getFeeRate(tx.network, tx.feeLevel, function(err, feeRate) {
|
||||||
if (err) return cb(err);
|
if (err) return cb(err);
|
||||||
|
|
||||||
tx.feeRate = feeRate;
|
tx.feeRate = feeRate;
|
||||||
tx.feeLevelName = feeService.feeOpts[tx.feeLevel];
|
tx.feeLevelName = feeService.feeOpts[tx.feeLevel];
|
||||||
|
|
||||||
// End of quick refresh, before wallet is selected.
|
|
||||||
if (!wallet)
|
if (!wallet)
|
||||||
return cb();
|
return cb();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue