commit 5204aeb3b1499d34ff8c4aa4c9bce6039db10c78
parent e612b87272cc49650b4b041ab2e4f91b2784d531
Author: NicholasFarrow <nicholas.w.farrow@gmail.com>
Date: Fri, 5 Feb 2021 00:11:22 +1100
push correct payment method argument
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/templates/index.html b/templates/index.html
@@ -115,7 +115,7 @@
<!-- Alternate between offering lightning or on chain payment switch -->
{% if params.lnd_enabled %}
{% if params.method != "bitcoind"%}
- <button onclick="replaceUrlParam(window.location, 'method', 'bitcoind');">On-chain Payment</button>
+ <button onclick="replaceUrlParam(window.location, 'method', 'bitcoind');">Onchain Payment</button>
{% else %}
<button onclick="replaceUrlParam(window.location, 'method', 'lnd');">Lightning Payment</button>
{% endif %}