Merge pull request #3937 from cmgustavo/bug/tx-format-service-02

Fix tx format service
This commit is contained in:
Matias Alejo Garcia 2016-02-29 16:40:22 -03:00
commit fefa939bd4
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ angular.module('copayApp.services').factory('txFormatService', function(profileS
return tx;
// New transaction output format
if (tx.outputs) {
if (tx.outputs && tx.outputs.length) {
var outputsNr = tx.outputs.length;