Update: Shows full precision for formatAmount function

This commit is contained in:
Sam Cheng Hung 2018-03-29 14:44:03 +09:00
commit d7a2a61608

View file

@ -24,7 +24,7 @@ angular.module('copayApp.services').factory('txFormatService', function($filter,
: (configCache.bitcoinCashAlias || defaults.bitcoinCashAlias);
if (isNaN(satoshis)) return;
return root.formatAmount(satoshis) + ' ' + (c).toUpperCase();
return root.formatAmount(satoshis, 'full') + ' ' + (c).toUpperCase();
};
root.toFiat = function(coin, satoshis, code, cb) {