SatSale

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

commit 8eb79e8d2d9ba590ff3b819f140e54b21f6bef2d
parent 4f9a62631b3a5314e2738f9813de57963f3141b1
Author: NicholasFarrow <nicholas.w.farrow@gmail.com>
Date:   Mon,  8 Mar 2021 11:21:03 +1100

getinfo only called on initial test connection upon startup

Diffstat:
Mserver.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server.py b/server.py @@ -213,7 +213,7 @@ print("Checking node connectivity...") if config.pay_method == "bitcoind": bitcoind.btcd(1, "USD", "Init test.", test=True) elif config.pay_method == "lnd": - lnd.lnd(1, "USD", "Init test", test=True)) + lnd.lnd(1, "USD", "Init test", test=True) print("Connection successful.")