diff --git a/src/js/services/txFormatService.js b/src/js/services/txFormatService.js index f780b659c..47ed539e8 100644 --- a/src/js/services/txFormatService.js +++ b/src/js/services/txFormatService.js @@ -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) {