--- Log opened Wed Mar 24 00:00:02 2021 --- Day changed Wed Mar 24 2021 00:00 -!- blockstream_bot [blockstrea@gateway/shell/sameroom/x-iyngssqtppxfqsbk] has joined #c-lightning 00:03 -!- jonatack_ [~jon@37.165.85.219] has quit [Quit: jonatack_] 01:57 -!- jasan [~j@n.bublina.eu.org] has joined #c-lightning 01:59 -!- jasan [~j@n.bublina.eu.org] has quit [Client Quit] 02:03 -!- jasan [~j@n.bublina.eu.org] has joined #c-lightning 02:04 -!- kexkey [~kexkey@static-198-54-132-101.cust.tzulo.com] has quit [Ping timeout: 256 seconds] 03:20 -!- vincenzopalazzo [~vincenzop@host-79-30-9-166.retail.telecomitalia.it] has joined #c-lightning 04:05 -!- jonatack [~jon@37.164.189.52] has joined #c-lightning 04:43 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has quit [Ping timeout: 268 seconds] 04:51 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has joined #c-lightning 04:53 < carboncarlo> haha I was confused, why my channelfees kept changing, then I realized I have the feeadjuster plugin running! 04:54 < carboncarlo> I basically dumped all pugins into /.lightning 05:11 < m-schmoock> cdecker: hey, I noticed that v0.10.0rc1 seems to have troubles receiving larger mpp invoices. 05:12 < m-schmoock> my setup is the following (as you might know). I use eclair (mobile) via my clnd and appart from that I also have a phoenix wallet. eclair is just connected through my node and does not have other channels. 05:13 < m-schmoock> When I send btc on mainnet from my phoenix to my eclair this works fine also for bigger mpp payments (i.e. bigger than 100$). When I send the same amount from phoenix to my clnd (the one the money passes through just fine before) it almost always fails currently. If I'm lucky I can get small amounts through (10-20$) 05:15 < m-schmoock> This worked better for earlier releases. Do you know something that may have caused that? Do you need more debug info? 05:34 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has quit [Ping timeout: 268 seconds] 05:37 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has joined #c-lightning 06:32 -!- carboncarlo [900263cd@bbcs-99-205.pub.wingo.ch] has quit [Quit: Connection closed] 06:36 < vincenzopalazzo> m-schmoock: Maybe this https://github.com/ElementsProject/lightning/issues/4376 can be the cause? and maybe this can be one possible solution? https://github.com/ElementsProject/lightning/issues/4376#issuecomment-805476370 07:12 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has quit [Ping timeout: 268 seconds] 07:14 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has joined #c-lightning 07:21 -!- jonatack [~jon@37.164.189.52] has quit [Read error: Connection reset by peer] 07:50 <@cdecker> m-schmoock: we haven't touched the MPP receiver side afaik, what are the symptoms? Is it timing out, can you share logs? Could this be that eclair is not sending the exact amount? 08:06 -!- blockstream_bot [blockstrea@gateway/shell/sameroom/x-iyngssqtppxfqsbk] has left #c-lightning [] 08:06 -!- blockstream_bot [blockstrea@gateway/shell/sameroom/x-iyngssqtppxfqsbk] has joined #c-lightning 08:31 -!- kexkey [~kexkey@static-198-54-132-117.cust.tzulo.com] has joined #c-lightning 08:37 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has quit [Ping timeout: 268 seconds] 08:44 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has joined #c-lightning 08:54 -!- jb55 [~jb55@gateway/tor-sasl/jb55] has quit [Remote host closed the connection] 09:00 -!- joostjgr [~joostjgr@81-207-149-246.fixed.kpn.net] has joined #c-lightning 09:01 -!- HelloShitty [~psysc0rpi@bl20-171-222.dsl.telepac.pt] has quit [Ping timeout: 246 seconds] 09:03 < joostjgr> hi, i am doing some experimentation with c-lightning but am having trouble connecting to it via the network. i did find the docker image and the EXPOSE_TCP flag, but how to communicate with the daemon from golang without writing a low level comm library myself? any recommendations here, glightning maybe? tried go-ethereum/rpc but that didn't seem fully compatible and also doesn't appear to have the right transport 09:03 -!- HelloShitty [~psysc0rpi@bl20-171-222.dsl.telepac.pt] has joined #c-lightning 09:04 <@cdecker> Yep, glightning is definitely an option for go 09:04 < joostjgr> i saw an issue on the repo saying it isn't compatible with the newer c-lightning releases. is that true? 09:05 <@cdecker> Alternatively fiatjaf has a more up-to-date library here: https://github.com/fiatjaf/lightningd-gjson-rpc 09:05 <@cdecker> Haven't used glightning myself tbh, so can't comment on how up-to-date it is 09:06 < joostjgr> i am looking for a library that can use that exposed tcp port. it seems that neither glightning nor lightningd-gjson-rpc support that? 09:06 < joostjgr> (only do unix socket) 09:06 <@cdecker> Ah, right, lemme check 09:08 < fiatjaf> joostjgr: sparko 09:08 < fiatjaf> https://github.com/fiatjaf/sparko 09:08 < vincenzopalazzo> joostjgr: I'm learning go and I want work on glightning, I can update you in the next days! 09:09 < vincenzopalazzo> fiatjaf: sparko it is very cool plugin :-D 09:09 <@cdecker> Ah, it uses socat to expose the Unix-Socket over TCP, so it should just be a net.Dial away :-) 09:09 < fiatjaf> glightning has all the types hardcoded, so whenever something changes it has to change too 09:09 < fiatjaf> https://github.com/fiatjaf/lightningd-gjson-rpc is schemaless so it works always, but you don't get the type guarantees 09:10 < fiatjaf> but you can use https://github.com/fiatjaf/lightningd-gjson-rpc to talk to a sparko HTTP server too 09:10 < fiatjaf> so you can install sparko as a plugin, then connect to it from somewhere else with lightningd-gjson-rpc 09:11 < joostjgr> ok, that is useful info. so either patch glightning to use a different dial command, use sparko directly, or use sparko+lghtningd-gjson-rpc 09:12 < joostjgr> i'll try glightning first because it doesn't require me to change the docker image 09:14 < joostjgr> thanks 09:27 < joostjgr> yes, just replacing the transport in net.dial does the job 09:53 -!- jonatack [~jon@37.172.241.248] has joined #c-lightning 10:00 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has quit [Ping timeout: 264 seconds] 10:00 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has joined #c-lightning 10:06 -!- joostjgr [~joostjgr@81-207-149-246.fixed.kpn.net] has quit [Quit: Leaving] 10:21 < jasan> invoice causes me a FATAL SIGNAL 6 https://github.com/ElementsProject/lightning/issues/4451 10:25 < fiatjaf> thank you vincenzopalazzo 10:28 < jasan> actually the invoice works for me now, closing the issue mentioned above. 10:29 -!- jasan [~j@n.bublina.eu.org] has quit [Quit: Bye!] 10:30 < vincenzopalazzo> jasan: Your exception look like an exception during this call https://github.com/ElementsProject/lightning/blob/3c87e1f3384a8edef15adbe8c4a7d43510b0a37e/lightningd/invoice.c#L581 in particular assert(a->c->rr_number < b->c->rr_number); 10:32 < vincenzopalazzo> The only think that I don't understend is why it is not possible have a condition like that (a->c->rr_number < b->c->rr_number), cdecker can be a refused of some tests or I'm missing somethings? 10:34 < vincenzopalazzo> also because the method cmp_rr_number is passed to an sorting algorithm and it can be -1, maybe not 0 as the comment suggest 12:57 -!- dr-orlovsky [~dr-orlovs@31.14.40.19] has joined #c-lightning 13:24 -!- Victorsueca [~Victorsue@unaffiliated/victorsueca] has quit [Read error: Connection reset by peer] 13:50 -!- kabaum [~kabaum@h-13-35.A163.priv.bahnhof.se] has quit [Ping timeout: 256 seconds] 14:09 -!- kexkey [~kexkey@static-198-54-132-117.cust.tzulo.com] has quit [Ping timeout: 240 seconds] 14:35 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has quit [Ping timeout: 260 seconds] 14:39 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has joined #c-lightning 14:46 -!- k3tan [~pi@gateway/tor-sasl/k3tan] has joined #c-lightning 14:51 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has quit [Ping timeout: 260 seconds] 14:53 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has joined #c-lightning 15:04 -!- k3tan [~pi@gateway/tor-sasl/k3tan] has quit [Remote host closed the connection] 15:04 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has quit [Ping timeout: 272 seconds] 15:04 -!- k3tan [~pi@gateway/tor-sasl/k3tan] has joined #c-lightning 15:25 -!- jonatack [~jon@37.172.241.248] has quit [Ping timeout: 268 seconds] 15:32 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has joined #c-lightning 15:43 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has joined #c-lightning 15:44 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has quit [Ping timeout: 272 seconds] 15:45 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has joined #c-lightning 15:48 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Ping timeout: 265 seconds] 15:48 -!- vincenzopalazzo [~vincenzop@host-79-30-9-166.retail.telecomitalia.it] has quit [Quit: Leaving] 15:57 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has quit [Ping timeout: 272 seconds] 16:01 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has joined #c-lightning 16:08 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has quit [Ping timeout: 260 seconds] 16:17 -!- blockstream_bot [blockstrea@gateway/shell/sameroom/x-iyngssqtppxfqsbk] has left #c-lightning [] 16:17 -!- blockstream_bot [blockstrea@gateway/shell/sameroom/x-iyngssqtppxfqsbk] has joined #c-lightning 16:24 -!- fiatjaf [~fiatjaf@2804:7f2:2a8c:f814:ea40:f2ff:fe85:d2dc] has joined #c-lightning 17:43 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has joined #c-lightning 17:46 -!- vincenzopalazzo [~vincenzop@host-79-30-9-166.retail.telecomitalia.it] has joined #c-lightning 17:47 -!- vincenzopalazzo [~vincenzop@host-79-30-9-166.retail.telecomitalia.it] has quit [Client Quit] 18:00 -!- rny [~rny@gateway/tor-sasl/renlord] has quit [Remote host closed the connection] 18:00 -!- rny [~rny@gateway/tor-sasl/renlord] has joined #c-lightning 18:32 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Quit: Leaving.] 19:05 -!- _rny [~rny@gateway/tor-sasl/renlord] has joined #c-lightning 19:07 -!- rny [~rny@gateway/tor-sasl/renlord] has quit [Ping timeout: 268 seconds] 19:10 -!- _rny is now known as rny 19:38 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has joined #c-lightning 20:01 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #c-lightning 20:04 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Remote host closed the connection] 20:05 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #c-lightning 20:19 -!- belcher_ [~belcher@unaffiliated/belcher] has joined #c-lightning 20:23 -!- belcher [~belcher@unaffiliated/belcher] has quit [Ping timeout: 272 seconds] 20:29 -!- belcher_ is now known as belcher 21:27 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has quit [Quit: = ""] 21:29 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Quit: Leaving.] 22:50 -!- ksedgwic [~ksedgwic@192-184-130-48.fiber.dynamic.sonic.net] has quit [Quit: Lost terminal] 23:38 -!- shesek [~shesek@unaffiliated/shesek] has joined #c-lightning 23:59 -!- kabaum [~kabaum@h-13-35.A163.priv.bahnhof.se] has joined #c-lightning --- Log closed Thu Mar 25 00:00:06 2021