Compare commits

..

5 Commits

Author SHA1 Message Date
99c48cb684 Rename param to description 2024-12-27 01:29:18 +01:00
6e39698f18 Add LNURL metadata 2024-12-27 01:29:18 +01:00
40963f9a36 Fix malformed callback 2024-12-27 01:13:52 +01:00
e32a531c61 Print LNURL 2024-12-27 01:00:14 +01:00
7f632c1c98 LNURL + phoenixd 2024-12-27 00:59:25 +01:00

View File

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