diff --git a/capsulflask/payment.py b/capsulflask/payment.py index fd7f82b..5238f26 100644 --- a/capsulflask/payment.py +++ b/capsulflask/payment.py @@ -47,7 +47,6 @@ def validate_dollars(): @account_required def btcpay_payment(): errors = list() - invoice_id = None if request.method == "POST": result = validate_dollars() @@ -67,18 +66,17 @@ def btcpay_payment(): current_app.logger.info(f"created btcpay invoice: {invoice}") # print(invoice) - invoice_id = invoice["id"] - current_app.logger.info(f"created btcpay invoice_id={invoice_id} ( {session['account']}, ${dollars} )") + current_app.logger.info(f"created btcpay invoice_id={invoice["id"]} ( {session['account']}, ${dollars} )") - get_model().create_payment_session("btcpay", invoice_id, session["account"], dollars) + get_model().create_payment_session("btcpay", invoice["id"], session["account"], dollars) return redirect(invoice["url"]) for error in errors: flash(error) - return render_template("btcpay.html", invoice_id=invoice_id) + return render_template("btcpay.html") def poll_btcpay_session(invoice_id): diff --git a/capsulflask/templates/btcpay.html b/capsulflask/templates/btcpay.html index 573c473..41dbc58 100644 --- a/capsulflask/templates/btcpay.html +++ b/capsulflask/templates/btcpay.html @@ -26,11 +26,11 @@ name="dollars" type="text" /> - + + +
+

NOTE: for now we have switched over to our beta BTCPay Server instance at https://beeteeceepae2.cyberia.club

+

In the future we'll migrate the DNS back over to btcpay.cyberia.club but for now this is easier.