fix snippets

This commit is contained in:
Roei Erez
2023-12-12 18:11:22 +02:00
parent 78b91e9373
commit c1a70165a7
5 changed files with 9 additions and 8 deletions

View File

@@ -13,8 +13,8 @@ func GenerateReceiveOnchainAddress() {
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)
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
}