Skip to content

Commit

Permalink
Add thousands separator in example values
Browse files Browse the repository at this point in the history
  • Loading branch information
ok300 committed Jul 4, 2024
1 parent 7e90dba commit 326d22e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion snippets/react-native/receive_onchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const exampleReceiveOnchain = async () => {

// Set the amount you wish the payer to send, which should be within the above limits
const prepareResponse = await prepareReceiveOnchain({
payerAmountSat: 50000
payerAmountSat: 50_000
})

// If the fees are acceptable, continue to create the Onchain Receive Payment
Expand Down
2 changes: 1 addition & 1 deletion snippets/react-native/receive_payment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const exampleReceiveLightningPayment = async () => {

// Set the amount you wish the payer to send, which should be within the above limits
const prepareReceiveResponse = await prepareReceivePayment({
payerAmountSat: 5000
payerAmountSat: 5_000
})

// If the fees are acceptable, continue to create the Receive Payment
Expand Down

0 comments on commit 326d22e

Please sign in to comment.