--- Day changed Mon Oct 30 2017 01:29 -!- bule [~bule@gateway/tor-sasl/bule] has quit [Ping timeout: 248 seconds] 01:35 -!- sycofly [~sycofly@121.99.240.44] has joined #lnd 02:12 -!- mnkk___ [~mnk4@95.90.233.42] has quit [Ping timeout: 248 seconds] 02:42 -!- Emcy_ [~MC@unaffiliated/emcy] has quit [Read error: Connection reset by peer] 02:58 -!- Emcy [~MC@unaffiliated/emcy] has joined #lnd 02:59 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 03:00 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #lnd 03:04 -!- mnkk___ [~mnk4@ip5f5ae92a.dynamic.kabel-deutschland.de] has joined #lnd 03:06 -!- sycofly [~sycofly@121.99.240.44] has quit [Quit: This computer has gone to sleep] 03:23 -!- chaosdav [~david@server.cloudscripting.nl] has quit [Ping timeout: 260 seconds] 03:23 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has quit [Remote host closed the connection] 05:06 -!- Deadhand [~deadhand@CPE6038e0be3871-CMf0f249a14e40.cpe.net.cable.rogers.com] has quit [Read error: Connection reset by peer] 05:06 -!- Deadhandd [~deadhand@CPE6038e0be3871-CMf0f249a14e40.cpe.net.cable.rogers.com] has joined #lnd 05:10 -!- Deadhandd [~deadhand@CPE6038e0be3871-CMf0f249a14e40.cpe.net.cable.rogers.com] has quit [Read error: Connection reset by peer] 05:11 -!- Deadhand [~deadhand@CPE6038e0be3871-CMf0f249a14e40.cpe.net.cable.rogers.com] has joined #lnd 05:23 -!- quitobro [~quitobro@pool-108-41-0-186.nycmny.fios.verizon.net] has joined #lnd 06:25 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-erlgbulniyfehixz] has quit [Quit: Connection closed for inactivity] 06:51 -!- quitobro_ [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has joined #lnd 06:52 -!- quitobro [~quitobro@pool-108-41-0-186.nycmny.fios.verizon.net] has quit [Ping timeout: 248 seconds] 06:52 -!- quitobro_ is now known as quitobro 06:53 -!- aakselrod [~aakselrod@2601:281:c702:8621:418f:7154:5de6:a4b8] has quit [Quit: Leaving] 06:54 -!- aakselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has joined #lnd 07:00 -!- quitobro_ [~quitobro@pool-108-41-0-186.nycmny.fios.verizon.net] has joined #lnd 07:01 -!- quitobro [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has quit [Ping timeout: 240 seconds] 07:01 -!- quitobro_ is now known as quitobro 07:31 -!- TerminusAlamond4 [~TerminusA@sj0.logicfailed.com] has quit [Ping timeout: 240 seconds] 07:32 -!- TerminusAlamond4 [~TerminusA@sj0.logicfailed.com] has joined #lnd 07:38 -!- quitobro_ [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has joined #lnd 07:39 -!- quitobro [~quitobro@pool-108-41-0-186.nycmny.fios.verizon.net] has quit [Ping timeout: 240 seconds] 07:39 -!- quitobro_ is now known as quitobro 08:26 -!- chjj [~chjj@unaffiliated/chjj] has joined #lnd 08:38 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Write error: Connection reset by peer] 08:38 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #lnd 09:46 -!- esotericnonsense [~esotericn@gateway/vpn/privateinternetaccess/esotericnonsense] has quit [Ping timeout: 248 seconds] 10:17 -!- bule [~bule@gateway/tor-sasl/bule] has joined #lnd 10:17 < jimpo> extractHtlcResolutions does not create HTLC resolutions for incoming transactions, whereas it should if the preimage is known. https://github.com/lightningnetwork/lnd/blob/master/lnwallet/channel.go#L3491 10:18 -!- bule [~bule@gateway/tor-sasl/bule] has quit [Remote host closed the connection] 10:19 < jimpo> But the preimage data isn't in any of the method parameters and I'm not sure what the best way to do that is. The easiest would be to add a Preimage field to channeldb.HTLC, which wouldn't be persisted but could be assigned to in memory. Or make lnwallet.HTLC which is basically a decorator for channeldb.HTLC with the preimage field and change LightningWallet to use that pretty much everywhere it has a 10:19 < jimpo> channeldb.HTLC. 11:58 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 11:59 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #lnd 12:43 -!- esotericnonsense [~esotericn@gateway/vpn/privateinternetaccess/esotericnonsense] has joined #lnd 13:03 <@roasbeef> jimpo: i've implemented that by making ForceClose take an interfaces so it can check if it knows a pre-image or not 13:04 <@roasbeef> shooting to have that retrans branch push by today/tomorrow just need to debug a few tests, then can prob get that other branch out for preview (the one that implements partial on-chain resolution) 13:04 < jimpo> k, let me know whenever you push that so I can update #350 13:04 <@roasbeef> fshoo 13:04 <@roasbeef> why's 350 depend on that? 13:04 <@roasbeef> just test vectors? 13:05 < jimpo> Doesn't depend but https://github.com/lightningnetwork/lnd/pull/350/files#diff-820f2ac491511e161129c045c839635fR832 13:05 < jimpo> some of the test are supposed to test resolution of HTLC success second-lvl txs 13:05 <@roasbeef> ahh I see 13:05 < jimpo> it could be merged first then updated later as well 13:06 <@roasbeef> yeh could do that as that way woudnlt bock the additional test coverage from landing in 13:06 <@roasbeef> are you gonig to scaling bitcoin? 13:06 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-wijrunwmmljksvpu] has joined #lnd 13:08 < jimpo> yes :-) 13:10 <@roasbeef> nooiice 13:11 * roasbeef needs to finish his slides still... 13:54 -!- aakselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has quit [Ping timeout: 252 seconds] 13:58 -!- aakselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has joined #lnd 14:06 -!- [a]akselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has joined #lnd 14:09 -!- aakselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has quit [Ping timeout: 240 seconds] 14:33 -!- [a]akselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has quit [Ping timeout: 248 seconds] 15:14 -!- aakselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has joined #lnd 15:15 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Remote host closed the connection] 15:16 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #lnd 15:28 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 15:32 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #lnd 15:40 -!- aakselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has quit [Ping timeout: 260 seconds] 15:45 -!- aakselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has joined #lnd 16:19 -!- quitobro [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has quit [Quit: quitobro] 17:50 -!- rgeraldes [bdd607ac@gateway/web/freenode/ip.189.214.7.172] has joined #lnd 17:56 -!- quitobro [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has joined #lnd 18:00 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has joined #lnd 18:37 -!- quitobro [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has quit [Quit: quitobro] 18:49 -!- StopAndDecrypt [~StopAndDe@c-73-248-248-9.hsd1.nj.comcast.net] has quit [Read error: Connection reset by peer] 18:53 -!- StopAndDecrypt [~StopAndDe@c-73-248-248-9.hsd1.nj.comcast.net] has joined #lnd 19:03 -github-lnd:#lnd- [lnd] Roasbeef pushed 5 new commits to master: https://git.io/vFqNi 19:03 -github-lnd:#lnd- lnd/master a559319 Olaoluwa Osuntokun: docker: update maintainer for lnd+ltcd docker files 19:03 -github-lnd:#lnd- lnd/master 5ced45a Olaoluwa Osuntokun: docker/lnd: start container w/o prompting user for wallet passphrase... 19:03 -github-lnd:#lnd- lnd/master 9bcb139 Olaoluwa Osuntokun: autopilot: shuffle set of candidates using Fisher–Yates before selecting... 19:04 -github-lnd:#lnd- [lnd] Roasbeef pushed 1 new commit to master: https://git.io/vFqNX 19:04 -github-lnd:#lnd- lnd/master 65cf834 Olaoluwa Osuntokun: discovery: fix linter warning 19:09 -github-lnd:#lnd- [lnd] Roasbeef pushed 1 new commit to master: https://git.io/vFqNd 19:09 -github-lnd:#lnd- lnd/master b28d613 Olaoluwa Osuntokun: build: add github.com/miekg/dns to set of dependancies 19:53 -!- rgeraldes [bdd607ac@gateway/web/freenode/ip.189.214.7.172] has quit [Quit: Page closed] 20:25 -!- mnkk___ [~mnk4@ip5f5ae92a.dynamic.kabel-deutschland.de] has quit [Ping timeout: 248 seconds] 21:22 -!- StopAndDecrypt [~StopAndDe@c-73-248-248-9.hsd1.nj.comcast.net] has quit [Read error: Connection reset by peer] 21:22 -!- StopAndDecrypt [~StopAndDe@c-73-248-248-9.hsd1.nj.comcast.net] has joined #lnd 21:23 -!- windsok [~windsok@45.63.59.8] has quit [Quit: No Ping reply in 180 seconds.] 21:24 -!- windsok [~windsok@45.63.59.8] has joined #lnd 21:33 -!- quitobro [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has joined #lnd 21:48 -!- quitobro [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has quit [Quit: quitobro] 22:39 -!- chjj [~chjj@unaffiliated/chjj] has quit [Ping timeout: 248 seconds]