Document swap limits

This commit is contained in:
Roei Erez
2023-12-12 17:29:31 +02:00
parent 4ff204dadc
commit 78b91e9373
9 changed files with 84 additions and 66 deletions

View File

@@ -12,6 +12,9 @@ func GenerateReceiveOnchainAddress() {
// Send your funds to the below bitcoin address
address := swapInfo.BitcoinAddress
log.Printf("%v", address)
log.Printf("Minimum amount allowed to deposit in sats: %v", swapInfo.minAllowedDeposit)
log.Printf("Maximum amount allowed to deposit in sats: %v", swapInfo.maxAllowedDeposit)
}
// ANCHOR_END: generate-receive-onchain-address
}