From d7a2a616085bb1f01fb8e5aa0fac8b18f7685926 Mon Sep 17 00:00:00 2001 From: Sam Cheng Hung Date: Thu, 29 Mar 2018 14:44:03 +0900 Subject: [PATCH] Update: Shows full precision for formatAmount function --- src/js/services/txFormatService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {