fix react native snippet

This commit is contained in:
Roei Erez
2023-12-12 18:24:29 +02:00
parent c1a70165a7
commit 9c78f98320

View File

@@ -12,8 +12,8 @@ const exampleReceiveOnchain = async () => {
// Send your funds to the below bitcoin address
const address = swapInfo.bitcoinAddress
console.log(`Minimum amount allowed to deposit in sats: {}`, swapInfo.minAllowedDeposit)
console.log(`Maximum amount allowed to deposit in sats: {}`, swapInfo.maxAllowedDeposit)
console.log(`Minimum amount allowed to deposit in sats: ${swapInfo.minAllowedDeposit}`)
console.log(`Maximum amount allowed to deposit in sats: ${swapInfo.maxAllowedDeposit}`)
// ANCHOR_END: generate-receive-onchain-address
}