btcpay-python icon indicating copy to clipboard operation
btcpay-python copied to clipboard

When generating an invoice for less than 20 cents, client does not return BTC addresses

Open tonydavis629 opened this issue 2 years ago • 0 comments

invoice_response = client.create_invoice({"price": 1.0, "currency": "USD"})

Returns a normal response.

invoice_response = client.create_invoice({"price": .19, "currency": "USD"})

Returns a response without a BTC address (but does include other currencies).

invoice_response = client.create_invoice({"price": .20, "currency": "USD"})

Also returns a normal response.

tonydavis629 avatar Apr 03 '24 03:04 tonydavis629