Skip to content

Commit

Permalink
Merge pull request #3937 from cmgustavo/bug/tx-format-service-02
Browse files Browse the repository at this point in the history
Fix tx format service
  • Loading branch information
matiu committed Feb 29, 2016
2 parents 3e9222e + 06bf8a7 commit fefa939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/services/txFormatService.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit fefa939

Please sign in to comment.