Compare commits

..

5 Commits

Author SHA1 Message Date
667128c341 Rename param to description 2024-12-27 01:34:57 +01:00
e09b7a59b3 Add LNURL metadata 2024-12-27 01:34:57 +01:00
54f76b5160 Fix malformed callback 2024-12-27 01:34:57 +01:00
7df699ee69 Print LNURL 2024-12-27 01:34:57 +01:00
de4d4d4f09 LNURL + phoenixd 2024-12-27 01:34:57 +01:00

View File

@ -20,7 +20,7 @@ type Phoenixd struct {
webhookUrl string webhookUrl string
} }
func NewPhoenixd(opts ...func(*Phoenixd) *Phoenixd) lightning.Lightning { func NewPhoenixd(opts ...func(*Phoenixd) *Phoenixd) *Phoenixd {
ln := &Phoenixd{} ln := &Phoenixd{}
for _, opt := range opts { for _, opt := range opts {
opt(ln) opt(ln)