1
1
mirror of https://github.com/bumi/lntip synced 2026-02-17 14:37:50 +00:00

4 Commits

Author SHA1 Message Date
70028e4264 Merge pull request #60 from reneaaron/fix/isenabled
fix: implement webln spec
2024-05-31 20:54:03 +03:00
René Aaron
47efbfcc96 fix: implement webln spec 2024-05-21 15:30:47 +02:00
b9b2ce8d6b Merge pull request #58 from crc32/patch-3
Update README.md
2023-06-05 09:20:46 +02:00
Arceris
f604ca21ce Update README.md
Added location of LND TLS for Start9
2023-06-03 16:54:49 -06:00
2 changed files with 5 additions and 8 deletions

View File

@@ -124,6 +124,7 @@ The TLS cert is located in the lnd directory:
- ~/umbrel/lnd/tls.cert on Umbrel
- /mnt/hdd/lnd/tls.cert on Raspiblitz
- /embassy-data/package-data/volumes/lnd/data/main/tls.cert on Start9 Embassy
- Can also be located in ~/.lnd
You should find the macaroon files in the LND data dir (e.g. ~.lnd/data/chain/bitcoin/mainnet/) or see "LND Permissions" how to create a new one.

View File

@@ -120,15 +120,11 @@ class LnMe {
}
payWithWebln() {
if (!webln.isEnabled) {
webln.enable().then((weblnResponse) => {
return webln.sendPayment(this.invoice.payment_request);
}).catch((e) => {
return this.showPaymentRequest();
})
} else {
webln.enable().then((weblnResponse) => {
return webln.sendPayment(this.invoice.payment_request);
}
}).catch((e) => {
return this.showPaymentRequest();
})
}
populatePaymentRequest() {