Skip to content

Commit

Permalink
fix lightning budget
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed Jun 27, 2024
1 parent cbc3da8 commit 8459c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lightning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ pub async fn pay_lightning(
.payments
.add_payment(
x_forwarded_for,
invoice.amount_milli_satoshis().unwrap_or(0),
invoice.amount_milli_satoshis().unwrap_or(0) / 1000,
)
.await;

Expand Down

0 comments on commit 8459c19

Please sign in to comment.