Skip to content

Commit

Permalink
Merge 13d12ce into 13359fd
Browse files Browse the repository at this point in the history
  • Loading branch information
anandsinghparihar committed Jan 16, 2018
2 parents 13359fd + 13d12ce commit f1d0afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/wallet/wallet/shared/transaction.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class Transaction {
constructor(json: any) {
/* transactions */
this.txid = json.txid;
if (json.outputs !== undefined) {
if (json.outputs && json.outputs[0]) {
this.address = json.outputs[0].address;
this.stealth_address = json.outputs[0].stealth_address;
this.label = json.outputs[0].label;
Expand Down

0 comments on commit f1d0afe

Please sign in to comment.