SatSale

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit e612b87272cc49650b4b041ab2e4f91b2784d531
parent 39a03a64d5441985cfb063cd288e92095da38f12
Author: NicholasFarrow <nicholas.w.farrow@gmail.com>
Date:   Fri,  5 Feb 2021 00:10:18 +1100

push correct payment method argument

Diffstat:
Mtemplates/index.html | 2+-
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', 'btcd');">On-chain Payment</button> + <button onclick="replaceUrlParam(window.location, 'method', 'bitcoind');">On-chain Payment</button> {% else %} <button onclick="replaceUrlParam(window.location, 'method', 'lnd');">Lightning Payment</button> {% endif %}