diff --git a/src/js/services/txFormatService.js b/src/js/services/txFormatService.js index 47ed539e8..5817c1a27 100644 --- a/src/js/services/txFormatService.js +++ b/src/js/services/txFormatService.js @@ -14,7 +14,7 @@ angular.module('copayApp.services').factory('txFormatService', function($filter, var opts = { fullPrecision: !!fullPrecision }; - return this.Utils.formatAmount(satoshis, config.unitCode, opts); + return parseInt(satoshis) == 0 ? '0.00' : this.Utils.formatAmount(satoshis, config.unitCode, opts); }; root.formatAmountStr = function(coin, satoshis) {