Skip to content

Commit

Permalink
only console.log Pending HTLCs if existing
Browse files Browse the repository at this point in the history
  • Loading branch information
myxmaster committed Nov 6, 2024
1 parent a415bb3 commit c198302
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stores/ChannelsStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,9 @@ export default class ChannelsStore {
}
}

console.log('Pending HTLCs', this.pendingHTLCs);
if (this.pendingHTLCs.length > 0) {
console.log('Pending HTLCs', this.pendingHTLCs);
}

this.loading = false;
return channels;
Expand Down

0 comments on commit c198302

Please sign in to comment.