--- Day changed Mon Feb 26 2018 00:15 -!- CubicEarths [~cubiceart@50-0-95-188.dsl.dynamic.fusionbroadband.com] has joined #c-lightning 00:21 -!- lxer [~lx@ip5f5bd657.dynamic.kabel-deutschland.de] has joined #c-lightning 00:34 -!- CubicEarths [~cubiceart@50-0-95-188.dsl.dynamic.fusionbroadband.com] has quit [Remote host closed the connection] 00:45 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has joined #c-lightning 01:25 -!- bitonic-cjp [~bitonic-c@92-111-70-106.cable.dynamic.v4.ziggo.nl] has joined #c-lightning 01:34 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 252 seconds] 01:52 < p3tr> i think the error message is very misleading here: 01:52 < p3tr> user@machine:/lightning$ lncli fundchannel 02565b3920e81816040bf477c135cdbfc2c931a11fc41593bd3217b1eb5a399c6f 10000000 01:52 < p3tr> { "code" : -1, "message" : "sent ERROR to_self_delay 1201 larger than 432" } 01:52 < p3tr> user@machine:/lightning$ lncli fundchannel 02565b3920e81816040bf477c135cdbfc2c931a11fc41593bd3217b1eb5a399c6f 5000000 01:52 < p3tr> { "code" : -1, "message" : "sent ERROR to_self_delay 600 larger than 432" } 01:52 < p3tr> user@machine:/lightning$ lncli fundchannel 02565b3920e81816040bf477c135cdbfc2c931a11fc41593bd3217b1eb5a399c6f 7500000 01:52 < p3tr> { "code" : -1, "message" : "sent ERROR to_self_delay 901 larger than 432" } 01:52 < p3tr> { "tx" : "0200000000010125744673...", "txid" : "ac97847d5a070..." } 01:52 < p3tr> user@machine:/lightning$ lncli fundchannel 02565b3920e81816040bf477c135cdbfc2c931a11fc41593bd3217b1eb5a399c6f 3000000 01:53 < p3tr> it complains about to_self_delay but clearly the problem is the amount of funds i want in the channel... what is going on? 01:59 < p3tr> by the way, great job with the 'status' of a channel, much easier to debug what is going on now 02:01 -!- bryan_w [~is@2600:2108:9:8a90:5a69:d114:68b8:dae2] has quit [Ping timeout: 245 seconds] 02:03 -!- Mark____ [5bd4cf04@gateway/web/freenode/ip.91.212.207.4] has quit [Ping timeout: 260 seconds] 02:04 < almkglor> @p3tr maybe the 02565b3920e81816040bf477c135cdbfc2c931a11fc41593bd3217b1eb5a399c6f node wants a to_self_delay scaled to the channel size 02:04 < almkglor> while lightningd prefers a fixed to_self_delay max value of 3 days 02:05 < almkglor> or something...? 02:15 -githubby:#c-lightning- [lightning] Saibato opened pull request #1104: [WIP] tor V2/V3 connect support for lightning (master...master) https://git.io/vAoer 02:26 -!- llou [~textual@cm-83-97-182-195.telecable.es] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 02:42 -!- almkglor [9258463b@gateway/web/freenode/ip.146.88.70.59] has quit [Ping timeout: 260 seconds] 02:58 < rusty> p3tr: thanks! Glad it worked... Hmm, yeah, we don't allow more than 3 days timeout. Perhaps that's too aggressive? 03:07 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Quit: Leaving.] 03:07 < p3tr> rusty: well 3 days seem ok to me, though i fail to understand the relationship between the size of the channel and to_self_delay 03:08 < p3tr> what i mean is that from the error message alone i would have never thought that reducing the channel size would help - it was just something i tried at random and noticed it did have an effect 03:08 < p3tr> if instead the error message read something like "channel size too big, maximum: 5000000" then that would be a lot more helpful :) 03:09 < p3tr> perhaps it could even mention that it is because of to_self_delay but again i fail to understand why there is a relationship at all 03:38 -githubby:#c-lightning- [lightning] cdecker closed pull request #1087: Add "make check-python" (flake8 check) (master...check-python) https://git.io/vAVMt 03:50 -githubby:#c-lightning- [lightning] icota opened pull request #1106: Update INSTALL.md with Android instructions (master...patch-1) https://git.io/vAotq 04:11 -!- cncr04s [~cncr04s@unaffiliated/cncr04s] has joined #c-lightning 04:37 -!- Mark__ [5bd4cf04@gateway/web/freenode/ip.91.212.207.4] has joined #c-lightning 04:39 -githubby:#c-lightning- [lightning] ZmnSCPxj opened pull request #1107: invoices: Add delexpiredinvoice command. (master...delexpiredinvoice) https://git.io/vAoGa 05:06 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-zolrpsqgtcsdrcif] has quit [Quit: Connection closed for inactivity] 05:32 -!- ebx [~ebx@unaffiliated/ebex] has joined #c-lightning 05:49 < bitonic-cjp> Can't the RPC handle it when I call decodepay with a bolt11 string with a newline added to it? My application hangs on it. 06:01 -githubby:#c-lightning- [lightning] cdecker closed pull request #1102: Configurator cross fix (master...configurator-cross-fix) https://git.io/vArol 06:01 < bitonic-cjp> Apparently, this is the case for *any* string input, including the 'description' input of the 'invoice' command. 06:02 < bitonic-cjp> I'd say that newlines will be pretty common in invoice descriptions. 06:03 -!- douglas_ [~douglas@c-73-234-93-65.hsd1.nh.comcast.net] has joined #c-lightning 06:03 < bitonic-cjp> >>> json.dumps({"arg":"\n"}) 06:03 < bitonic-cjp> '{"arg": "\\n"}' 06:04 < bitonic-cjp> So, on the Python RPC side, it seems to do proper JSON escaping. 06:15 < p3tr> bitonic-cjp: btw our channel managed to get into normal state - i take it your node synced? 06:18 < bitonic-cjp> Yes it is synced now. 06:26 -!- aproc [~aproc@2605:6000:e503:8300:b92e:235c:2c51:cc53] has quit [Ping timeout: 245 seconds] 06:27 -!- aproc [~aproc@2605:6000:e503:8300:b92e:235c:2c51:cc53] has joined #c-lightning 06:34 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Quit: WeeChat 1.9.1] 06:35 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #c-lightning 06:36 -!- Mark__ [5bd4cf04@gateway/web/freenode/ip.91.212.207.4] has quit [Ping timeout: 260 seconds] 06:52 -!- bryan_w [~is@2600:2108:9:8a90:5a69:d114:68b8:dae2] has joined #c-lightning 06:55 -!- vogelito [~Adium@201.130.74.146] has joined #c-lightning 06:56 -!- zib [zib@slick.hkt0.keff.org] has quit [Ping timeout: 252 seconds] 06:57 -!- vogelito1 [~Adium@187-162-108-173.static.axtel.net] has joined #c-lightning 07:01 -!- vogelito [~Adium@201.130.74.146] has quit [Ping timeout: 248 seconds] 07:03 -!- zib [zib@slick.hkt0.keff.org] has joined #c-lightning 07:04 -!- mdrollette [~mdrollett@feynman.drollette.com] has quit [Quit: ZNC 1.6.5 - http://znc.in] 07:59 -!- propumpkin [~copumpkin@haskell/developer/copumpkin] has joined #c-lightning 07:59 -!- contrapumpkin [~copumpkin@haskell/developer/copumpkin] has quit [Ping timeout: 240 seconds] 08:32 -!- CubicEarths [~cubiceart@50-0-95-188.dsl.dynamic.fusionbroadband.com] has joined #c-lightning 08:32 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has joined #c-lightning 08:56 -!- jb55 [~jb55@70-36-49-138.dyn.novuscom.net] has quit [Ping timeout: 240 seconds] 09:05 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 240 seconds] 09:07 -!- bitonic-cjp [~bitonic-c@92-111-70-106.cable.dynamic.v4.ziggo.nl] has quit [Quit: Leaving] 09:09 -!- bryan_w [~is@2600:2108:9:8a90:5a69:d114:68b8:dae2] has quit [Ping timeout: 245 seconds] 09:17 -!- CubicEarths [~cubiceart@50-0-95-188.dsl.dynamic.fusionbroadband.com] has quit [Remote host closed the connection] 09:29 -!- CubicEarths [~cubiceart@50-0-95-188.dsl.dynamic.fusionbroadband.com] has joined #c-lightning 09:31 -!- grafcaps [~haroldbr@104.137.194.255] has joined #c-lightning 09:35 -!- vogelito1 [~Adium@187-162-108-173.static.axtel.net] has quit [Quit: Leaving.] 09:57 -!- llou [~textual@cm-83-97-182-195.telecable.es] has joined #c-lightning 10:25 -!- propumpkin is now known as contrapumpkin 10:37 -!- jb55 [~jb55@64.114.30.74] has joined #c-lightning 10:42 < zib> rompert: Varför har du bytt nick och gömt dig? 10:45 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has joined #c-lightning 11:15 < rusty> Hmm, lnd has 'maxRemoteDelay = 2016'. That's two weeks... 11:31 -githubby:#c-lightning- [lightning] rustyrussell opened pull request #1109: lightningd: close and reopen db across fork for daemonize (master...daemon-haunted-db) https://git.io/vAK4I 11:31 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-kfelopzwthnrworp] has joined #c-lightning 12:11 -!- riplin [d813b608@gateway/web/freenode/ip.216.19.182.8] has joined #c-lightning 12:11 -!- riplin [d813b608@gateway/web/freenode/ip.216.19.182.8] has quit [Client Quit] 12:18 -!- jb55 [~jb55@64.114.30.74] has quit [Read error: Connection reset by peer] 12:20 -!- farmerwampum [~farmerwam@88.202.178.102] has quit [Quit: farmerwampum] 12:25 -!- farmerwampum_ [~farmerwam@209.95.51.102] has joined #c-lightning 12:26 -githubby:#c-lightning- [lightning] rustyrussell opened pull request #1111: test_lightningd.py: more minor flake8 fixes. (master...unflake8) https://git.io/vAKgf 12:28 -!- shesek [~shesek@bzq-84-110-235-179.red.bezeqint.net] has joined #c-lightning 12:28 -!- shesek [~shesek@bzq-84-110-235-179.red.bezeqint.net] has quit [Changing host] 12:28 -!- shesek [~shesek@unaffiliated/shesek] has joined #c-lightning 12:32 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Ping timeout: 256 seconds] 13:04 -!- jojeyh [~delphi@2602:306:b8b6:b970:41cc:8d6f:4e2b:2830] has quit [Quit: Ex-Chat] 13:08 -!- icota [~igor@cm-2230.cable.globalnet.hr] has joined #c-lightning 13:36 -githubby:#c-lightning- [lightning] cdecker pushed 1 new commit to master: https://git.io/vAKPR 13:36 -githubby:#c-lightning- lightning/master 58fae47 Rusty Russell: test_lightningd.py: more minor flake8 fixes.... 13:41 -githubby:#c-lightning- [lightning] ZmnSCPxj closed pull request #1090: Not pass '-static' to configurator on macOS (master...build_mac) https://git.io/vAV58 14:14 -!- jb55 [~jb55@S01067cb21bc956ba.vc.shawcable.net] has joined #c-lightning 14:23 -!- jb55 [~jb55@S01067cb21bc956ba.vc.shawcable.net] has quit [Ping timeout: 256 seconds] 14:58 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has joined #c-lightning 15:09 -githubby:#c-lightning- [lightning] cdecker pushed 1 new commit to master: https://git.io/vAK5Y 15:09 -githubby:#c-lightning- lightning/master b7ed567 Rusty Russell: lightningd: close and reopen db across fork for daemonize... 15:47 < Bunnyh> I'm seeing defunct processes in ps aux, like this: [lightning_chann] 15:47 < Bunnyh> & [lightning_closi] 15:48 < Bunnyh> Is that normal? I tried to close a channel, doesn't seem to have happened so far 15:49 < Bunnyh> I closed, wait for an hour at least, then updated to the latest commit and started again 15:52 < rusty> Bunnyh: are you currently connected to the remote peer? 15:53 < Bunnyh> oh, no I'm not 15:54 < Bunnyh> He sent me 25k satoshi on a channel where I had no funds. Shouldn't I be able to close that channel without him being online? 15:55 < Bunnyh> Tried to return them but always got the no route error 15:57 < rusty> Bunnyh: 'close' tries to be nice, and negotiate a mutual close. Which it can't do if he's offline. 15:58 < rusty> Bunnyh: we should really have a close force option, but for the moment there's only a dev option called 'dev-fail'. It will drop to chain immediately. 15:59 < rusty> Bunnyh: which means you could be waiting a while for your funds, since they'll be timelocked. 15:59 < Bunnyh> How does that differ from mutual close? It doesn't require timelock? 15:59 < rusty> Bunnyh: yeah, mutual close is a normal tx spend, no timelock. Hence the preference (it also tends to negotiate lesser fees) 16:01 < rusty> Bunnyh: it'd be nice if close kept track that you're trying to close and just did it whenever they reconnected, rather than timing out. 16:06 -!- CubicEarths [~cubiceart@50-0-95-188.dsl.dynamic.fusionbroadband.com] has quit [Remote host closed the connection] 16:08 -!- icota [~igor@cm-2230.cable.globalnet.hr] has quit [Ping timeout: 252 seconds] 16:18 -!- CubicEarths [~cubiceart@50-0-95-188.dsl.dynamic.fusionbroadband.com] has joined #c-lightning 16:21 -!- lxer [~lx@ip5f5bd657.dynamic.kabel-deutschland.de] has quit [Ping timeout: 248 seconds] 16:26 -!- grafcaps [~haroldbr@104.137.194.255] has quit [Ping timeout: 240 seconds] 16:38 -!- grafcaps [~haroldbr@50.90.83.229] has joined #c-lightning 16:48 < booyah> wait, this is in C ??? 16:48 < booyah> as in C, not C++ ? 16:49 < booyah> wtf. this isn't the early 90's 16:50 * booyah wonders why 16:58 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #c-lightning 17:16 < rusty> booyah: doc/HACKING.md says "It's in C, to encourage alternate implementations." 17:43 -!- ebx [~ebx@unaffiliated/ebex] has quit [Remote host closed the connection] 18:10 -!- CubicEarths [~cubiceart@50-0-95-188.dsl.dynamic.fusionbroadband.com] has quit [Read error: Connection reset by peer] 18:17 -!- bryan_w [~is@2600:2108:9:8a90:5a69:d114:68b8:dae2] has joined #c-lightning 18:26 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 268 seconds] 19:41 -!- almkglor_ [9258463b@gateway/web/freenode/ip.146.88.70.59] has joined #c-lightning 21:05 -!- douglas_ is now known as dougsland 21:05 -!- dougsland [~douglas@c-73-234-93-65.hsd1.nh.comcast.net] has quit [Changing host] 21:05 -!- dougsland [~douglas@tchelinux/moderator/dougsland] has joined #c-lightning 21:15 -githubby:#c-lightning- [lightning] jBarz opened pull request #1113: Print node alias when listing peers (master...alias) https://git.io/vA63B 22:08 -!- CubicEarths [~cubiceart@50-0-95-188.dsl.dynamic.fusionbroadband.com] has joined #c-lightning 22:41 -!- rusty [~rusty@pdpc/supporter/bronze/rusty] has quit [Ping timeout: 256 seconds] 22:50 -!- devachandra [~devachand@netris.ru] has quit [Ping timeout: 256 seconds] 23:03 -!- dougsland [~douglas@tchelinux/moderator/dougsland] has quit [Ping timeout: 240 seconds] 23:27 -!- Mark__ [5bd4cf04@gateway/web/freenode/ip.91.212.207.4] has joined #c-lightning