Merge pull request #4499 from isocolsky/fix/amount-precision
Show amount & fees with full precision on tx details modal
This commit is contained in:
commit
dfb12289fe
5 changed files with 15 additions and 8 deletions
|
|
@ -693,8 +693,8 @@ angular.module('copayApp.controllers').controller('indexController', function($r
|
|||
$log.debug('Fixing Tx Cache Unit to:' + name)
|
||||
lodash.each(txs, function(tx) {
|
||||
|
||||
tx.amountStr = profileService.formatAmount(tx.amount, config.unitName) + name;
|
||||
tx.feeStr = profileService.formatAmount(tx.fees, config.unitName) + name;
|
||||
tx.amountStr = profileService.formatAmount(tx.amount) + name;
|
||||
tx.feeStr = profileService.formatAmount(tx.fees) + name;
|
||||
});
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue