Skip to content

Commit

Permalink
Merge pull request #2766 from kaloudis/zeus-2763
Browse files Browse the repository at this point in the history
ZEUS-2763: CLN payments incorrectly listed as 0-amt
  • Loading branch information
kaloudis authored Jan 24, 2025
2 parents 14a34e1 + f7894f3 commit a929aa7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions models/Payment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ export default class Payment extends BaseModel {
: this.value_sat ||
this.value ||
Number(this.msatoshi_sent) / 1000 ||
Number(this.amount_sent_msat) / 1000 ||
0;
}

Expand Down

0 comments on commit a929aa7

Please sign in to comment.