Skip to content

Commit

Permalink
Merge pull request #20 from getAlby/feat/show-fees
Browse files Browse the repository at this point in the history
feat: show fees on transaction details page
  • Loading branch information
rolznz authored Jul 20, 2024
2 parents 71ca03e + 8ae6c97 commit 30e3051
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pages/Transaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ export function Transaction() {
title="Preimage"
content={transaction.preimage}
/>
<TransactionDetailRow
title="Fee"
content={
Math.floor(transaction.fees_paid / 1000).toString() + " sats"
}
/>
</View>
</View>
</View>
Expand Down

0 comments on commit 30e3051

Please sign in to comment.