Update: Shows full precision for formatAmount function
This commit is contained in:
parent
124684b5a1
commit
d7a2a61608
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ angular.module('copayApp.services').factory('txFormatService', function($filter,
|
||||||
: (configCache.bitcoinCashAlias || defaults.bitcoinCashAlias);
|
: (configCache.bitcoinCashAlias || defaults.bitcoinCashAlias);
|
||||||
|
|
||||||
if (isNaN(satoshis)) return;
|
if (isNaN(satoshis)) return;
|
||||||
return root.formatAmount(satoshis) + ' ' + (c).toUpperCase();
|
return root.formatAmount(satoshis, 'full') + ' ' + (c).toUpperCase();
|
||||||
};
|
};
|
||||||
|
|
||||||
root.toFiat = function(coin, satoshis, code, cb) {
|
root.toFiat = function(coin, satoshis, code, cb) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue