Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct total amount in notifcations #3194

Merged
merged 3 commits into from
Jul 18, 2024
Merged

Conversation

pavanjoshi914
Copy link
Contributor

@pavanjoshi914 pavanjoshi914 commented Jul 15, 2024

show totalamount including fees in the notifcations as we do in the transactions table Fixes #3192

@@ -22,7 +22,7 @@ const paymentSuccessNotification = async (

const route = paymentResponseData?.data.route;
const { total_amt, total_fees } = route;
const paymentAmount = total_amt - total_fees;
const paymentAmount = total_amt;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure if this is correct for all the connectors?
is that correct for LND, NWC, alby?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alby to lndhub -correct
lndhub to alby - fees is always zero. total amount is correct no issues
lnd to lnd (testnet) - correct
nwc to alby oauth - totalAmount correct, fees shown 0
alby oauth to nwc - totalAmount correct, fees shown 8 sats

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for all the cases totalAmount is correct which is the amount that user paid. but in some cases even if fees is charged fees is not returned in the route which maybe corrected on server side

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So I think LND returns the total_amt with the fees (which is why we deduct it here)
but all others return the paid amount without the fee.

which means your change is OK. but we might need to change the LND connector to return the sent amount.

@pavanjoshi914 pavanjoshi914 changed the title feat: show totalamount including fees in notifications fix: correct total amount in notifcations Jul 18, 2024
@bumi bumi merged commit f91bf0e into master Jul 18, 2024
6 checks passed
@bumi bumi deleted the fix-notification-sat-value branch July 18, 2024 08:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[BUG] Browser notifications miscalculate
2 participants