--- Day changed Wed Feb 07 2018 00:01 -!- creslin [~textual@178.214.193.58] has joined #lnd 00:02 -!- Pioklo_ [~Pioklo@118-40.echostar.pl] has joined #lnd 00:04 -!- creslin_ [~textual@46.211.204.216] has joined #lnd 00:06 -!- dermoth_ [~dermoth@gateway/tor-sasl/dermoth] has joined #lnd 00:06 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Disconnected by services] 00:07 -!- dermoth_ is now known as dermoth 00:08 -!- creslin [~textual@178.214.193.58] has quit [Ping timeout: 268 seconds] 00:31 -github-lnd:#lnd- [lnd] practicalswift opened pull request #739: Fix recently introduced typos (master...typos-ii) https://git.io/vAfmJ 00:39 -!- dionysus69 [~Thunderbi@unaffiliated/dionysus69] has quit [Remote host closed the connection] 00:39 -!- simlay [~simlay@gateway/tor-sasl/simlay] has quit [Remote host closed the connection] 00:40 -!- simlay [~simlay@gateway/tor-sasl/simlay] has joined #lnd 00:40 -!- dionysus69 [~Thunderbi@unaffiliated/dionysus69] has joined #lnd 00:45 -!- creslin_ [~textual@46.211.204.216] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 00:45 -!- creslin [~textual@46.211.204.216] has joined #lnd 00:50 -!- creslin [~textual@46.211.204.216] has quit [Ping timeout: 248 seconds] 00:58 -!- creslin [~textual@deposing-waterfront.volia.net] has joined #lnd 01:03 -!- meteo [~meteo@52.201.229.182] has quit [Read error: Connection reset by peer] 01:10 < dionysus69> how do I check utxos in my lnd wallet? 01:10 < dionysus69> need to check if they are segwit or not 01:20 < mlz> dionysus69, lncli walletbalance --witness_only 01:20 -!- Styil [Styil@gateway/vpn/privateinternetaccess/styil] has quit [Remote host closed the connection] 01:20 < dionysus69> thanks 01:22 -!- sovjet [~sovjet@193.189.166.102] has joined #lnd 01:22 < dionysus69> I want to discuss one scenario, if I provide segwit address but someone sends me non segwit utxo, that output can't be used for LN transaction right? because that input won't be segwit? 01:24 -!- Graylan [uid277037@gateway/web/irccloud.com/x-ehxbeuqsppynkzqe] has quit [Quit: Connection closed for inactivity] 01:24 < dionysus69> and one more thing, if I provide external ip for my LN node, do I have to forward port 9735 in the router? or works without port forwarding? 01:36 < mlz> dionysus69, when you get a segwit address and someone send coins to that address, it doesn't matter if that person sends from a segwit or non-segwit address 01:36 < zyp> coins sent to a segwit address creates a segwit UTXO 01:36 < mlz> no 01:36 < mlz> not necessarily 01:36 < dionysus69> yep, that's what I am confused about 01:37 < zyp> mlz, in which case would it not? 01:37 < mlz> dionysus69, a segwit tx happens when it's spent 01:37 < dionysus69> I transferred all my balance to my own segwit address 01:37 < mlz> dionysus69, that's good 01:37 < dionysus69> in that case when I send to segwit address it will be fully segwit tx 01:37 < dionysus69> but I am worried if someone sends me a non segwit utxo to my segwit address 01:37 < mlz> it doesn't matter 01:38 < zyp> dionysus69, it doesn't matter what sort of output they spend 01:38 < dionysus69> would I have to resend all my balance back to my new segwit address in order to convert newly received utxos to segwit? 01:38 < zyp> no. 01:38 < dionysus69> ok then that's better cause it would introduce lots of inefficiency 01:38 < zyp> remember, UTXOs aren't sent, they are spent and created 01:39 < dionysus69> ok so when you spend a non segwit utxo to a segwit address, that becomes segwit utxo? 01:39 < dionysus69> do I get it right this time ? :D 01:39 < zyp> correct 01:39 < dionysus69> ok finally :D this segwit thing xD 01:39 < dionysus69> they should release 0.16 soon and everyone should upgrade 01:39 < dionysus69> non segwit tx is blasphemy 01:39 < zyp> UTXO is just short for "unspent transaction output" 01:39 < dionysus69> ye I know that much :D 01:40 < dionysus69> and what about the port 9735 question? :) 01:40 < zyp> and an address just encodes the scriptpubkey the output will be created with 01:41 < mlz> dionysus69, you only do port forwarding if you want incoming connections 01:41 < zyp> so a segwit address is an address that encodes a segwit witness program, and thus will always create a segwit UTXO when transacted to 01:41 < dionysus69> ok actually one more question, in one of my wallet, utxos don't have redeemscript at all, that automatically indicates that they arent segwit right? 01:41 < zyp> no 01:41 < dionysus69> I thought segwit utxo needed to have redeemscript starting with 0014 01:41 < zyp> redeemscript is a P2SH thing 01:42 < dionysus69> omg there we go :D and what's that ? :D 01:42 < zyp> pay to script-hash 01:45 < zyp> originally bitcoin put the spend-conditions in the scriptpubkey-field of an output 01:45 < dionysus69> p2sh address can't be segwit address right? 01:45 < dionysus69> p2pkh is the one I use 01:45 < dionysus69> starts with 2 on testnet 01:45 < dionysus69> and with 3 on mainnet 01:46 < zyp> eventually P2SH got developed, letting you provide the hash of a script in the output scriptpubkey 01:46 < zyp> then you provide the entire script when spending it 01:46 < zyp> 2/3-addresses are P2SH addresses 01:47 < zyp> they can be used to create segwit outputs, by providing a segwit witness program as the script 01:47 < zyp> this is how the segwit 3-addresses are created, they are technically P2WPKH wrapped in P2SH 01:48 < dionysus69> ok that's a little bit of a learning curve 01:48 < zyp> native segwit puts the witness program directly in the scriptpubkey field instead, but it's not compatible with the old address types 01:49 < zyp> so you can have segwit outputs created by both the old style 3-addresses, and the new bech32 (bt1-) addresses 01:49 < zyp> sorry, bc1* 01:53 < dionysus69> (y) 01:55 < dionysus69> is P2WPKH same as np2wkh ? 01:55 < zyp> no, np2wkh is P2SH-P2WPKH 01:55 < dionysus69> wow that's some maze 01:55 < zyp> the n stands for nested 01:56 < dionysus69> so it means, hashed P2WPKH is np2wkh ? 01:56 < zyp> i.e. a P2WPKH witness program nested inside P2SH 01:56 < zyp> correct 01:56 < dionysus69> haha 01:56 < dionysus69> cool 01:58 < dionysus69> thanks for help, lots of things are clearer 01:58 -!- iv4n [~iv4n@1.47.5.130] has joined #lnd 01:59 < zyp> BIP 141 has more details and examples if you want any further reading 02:14 -!- meteo [~meteo@52.201.229.182] has joined #lnd 02:37 -!- wxss [~user@46-227-66-220.static.obenetwork.net] has joined #lnd 03:00 -!- daouzo23 [~daraki235@81-223-13-90.static.upcbusiness.at] has quit [Read error: Connection reset by peer] 03:35 -!- django [~wings@s91904421.blix.com] has quit [Ping timeout: 264 seconds] 03:43 -!- qxt [~wings@2a02:20c8:4124::7e] has joined #lnd 03:45 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has quit [Remote host closed the connection] 04:07 -!- richard87 [~richard87@237.92-221-98.customer.lyse.net] has left #lnd [] 04:08 -!- richard87 [~richard87@237.92-221-98.customer.lyse.net] has joined #lnd 04:14 -!- qxt [~wings@2a02:20c8:4124::7e] has quit [Quit: Leaving] 04:19 -!- sovjet_ [~sovjet@193.189.166.102] has joined #lnd 04:23 -!- sovjet [~sovjet@193.189.166.102] has quit [Ping timeout: 260 seconds] 04:41 -!- nirved [~nirved@2a02:8071:b58a:3c00:d4e:6426:974b:5965] has joined #lnd 04:55 < Veggen> mlz: I created a copy of my LND node, that just keeps my force-closing channels and hopefully claims the balance afterwards, this ime. 04:56 < Veggen> 355 blocks till first of the two that didn't fmature during packet storm... 05:02 -!- rabidus [~rabidus@91-145-115-22.bb.dnainternet.fi] has quit [Ping timeout: 256 seconds] 05:04 -!- rabidus [~rabidus@91-145-120-64.bb.dnainternet.fi] has joined #lnd 05:19 -!- melvster [~melvin@ip-86-49-18-198.net.upcbroadband.cz] has joined #lnd 05:33 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 05:33 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 05:34 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #lnd 05:34 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #lnd 05:50 -!- Dru0 [2e4c532e@gateway/web/freenode/ip.46.76.83.46] has quit [Ping timeout: 260 seconds] 05:57 -!- Deadhand [~deadhand@CPE6038e0be3871-CMf0f249a14e40.cpe.net.cable.rogers.com] has quit [Ping timeout: 264 seconds] 06:02 -!- sh_smith [~sh_smith@cpe-76-174-26-91.socal.res.rr.com] has quit [Read error: Connection reset by peer] 06:05 -!- sh_smith [~sh_smith@cpe-76-174-26-91.socal.res.rr.com] has joined #lnd 06:12 -!- bryan_w [~is@2600:2108:9:8a90:5a69:d114:68b8:dae2] has joined #lnd 06:20 -!- sovjet_ [~sovjet@193.189.166.102] has quit [Quit: Leaving] 06:27 < Veggen> Hrm. I have a strange pending channel, from eclair mobile to LND. 06:27 -!- dionysus69 [~Thunderbi@unaffiliated/dionysus69] has quit [Ping timeout: 248 seconds] 06:29 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 06:31 < mlz> Veggen, i do the same sometimes 06:35 < Veggen> nuts. got rid of it. Restart fixed it. Second restart, that is, first crashed with trying to force-close it, the channel had no inputs... 06:36 < Veggen> should have let it stay, debug better. 06:37 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has joined #lnd 06:39 < Veggen> but I think I replicated. 06:43 < Veggen> mlz: Do you get the funds thatg way? 06:43 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 06:44 < Veggen> it's just test funds, but it does help with understanding LNDs inner workings :) 06:46 < Veggen> btw: I let it run with same wallet.dat as my new one. Should work :) 06:50 -!- Deadhand [~deadhand@99.246.2.68] has joined #lnd 06:53 < mlz> i think so, although i haven't really kept track of it 06:58 -!- Deadhand [~deadhand@99.246.2.68] has quit [Ping timeout: 248 seconds] 07:01 -!- Deadhand [~deadhand@99.246.2.68] has joined #lnd 07:07 -!- Soopaman [~soopaman@198.16.243.66] has joined #lnd 07:18 -!- Soopaman [~soopaman@198.16.243.66] has quit [Quit: Leaving.] 07:54 -!- zib [zib@slick.hkt0.keff.org] has quit [Ping timeout: 264 seconds] 08:01 -!- zib [zib@slick.hkt0.keff.org] has joined #lnd 08:09 -!- Deadhand [~deadhand@99.246.2.68] has quit [Ping timeout: 265 seconds] 08:17 -!- bryan_w [~is@2600:2108:9:8a90:5a69:d114:68b8:dae2] has quit [Ping timeout: 265 seconds] 08:25 < akihabara> anyone wants to open a channel with me? 08:30 < Veggen> akihabare: sure, if you'd like :) 08:31 < Veggen> do you have outgoing channels with balance? 08:33 < akihabara> yes 08:33 < akihabara> one sec 08:34 < akihabara> 02d13fd0be2a7e3d883b91687fa8244c81cb7001e139cec84fe2b305894d8321a0@88.99.169.74:9735 08:38 < Veggen> hmf. why is the connecion dropping immediately...wonder if my other node disturbs it. 08:38 -!- belcher [~belcher@unaffiliated/belcher] has joined #lnd 08:39 -!- dionysus69 [~Thunderbi@unaffiliated/dionysus69] has joined #lnd 08:40 < Veggen> yah, channel on the way... 08:45 < akihabara> hmm 08:46 < akihabara> node pub ending @ 887 ??? 08:48 < Veggen> yah. 08:53 -!- Deadhand [~deadhand@CPE6038e0be3871-CMf0f249a14e40.cpe.net.cable.rogers.com] has joined #lnd 08:57 < akihabara> nice 09:05 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-imrtpbsdfyctnfgq] has joined #lnd 09:12 < akihabara> Veggen channel says still pending 09:12 < akihabara> :S 09:24 < blademccool> hrm. my query route gives multiple path choices, but trying to pay the invoice just hangs. any idea? 09:46 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has quit [Quit: Leaving.] 09:53 -!- jigawatt [2f2ae8cc@gateway/web/freenode/ip.47.42.232.204] has quit [Quit: Page closed] 10:06 < Veggen> akihabara: still? Not here. 10:07 -!- jigawatt [2f2ae8cc@gateway/web/freenode/ip.47.42.232.204] has joined #lnd 10:12 -!- sovjet_ [~sovjet@user182.c2.sevnica.kabelnet.net] has joined #lnd 10:16 -!- oogle [~user@38.132.124.43] has joined #lnd 10:18 -!- Pavle [~pavle_@unaffiliated/pavle/x-4679000] has joined #lnd 10:23 -!- ChunkyPuffs [~ChunkyPuf@gateway/tor-sasl/chunkypuffs] has joined #lnd 10:24 -!- AndBobsYourUncle [~AndBobsYo@cpe-23-240-21-154.socal.res.rr.com] has joined #lnd 10:34 -!- kim0 [uid105149@ubuntu/member/kim0] has joined #lnd 10:54 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has joined #lnd 11:03 -!- an0maly [422658df@gateway/web/freenode/ip.66.38.88.223] has joined #lnd 11:03 -!- Pavle [~pavle_@unaffiliated/pavle/x-4679000] has quit [Quit: Leaving] 11:19 -!- oogle [~user@38.132.124.43] has quit [Remote host closed the connection] 11:24 -!- dionysus69 [~Thunderbi@unaffiliated/dionysus69] has quit [Remote host closed the connection] 11:34 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has quit [Quit: Leaving.] 11:41 -!- wxss [~user@46-227-66-220.static.obenetwork.net] has quit [Ping timeout: 256 seconds] 11:42 -!- wxss [~user@93.190.142.42] has joined #lnd 11:46 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 11:51 -!- sovjet_ [~sovjet@user182.c2.sevnica.kabelnet.net] has quit [Quit: Leaving] 11:57 -!- boltmanchine [~textual@216.15.17.193] has joined #lnd 11:57 -!- dyeager_ [425a9834@gateway/web/freenode/ip.66.90.152.52] has joined #lnd 11:58 -!- dyeager_ [425a9834@gateway/web/freenode/ip.66.90.152.52] has quit [Client Quit] 12:08 -!- boltmanchine [~textual@216.15.17.193] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 12:19 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 12:19 -!- boltmanchine [~textual@216.15.17.193] has joined #lnd 12:23 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 12:29 -!- erols [~erols@dhcp-077-251-249-036.chello.nl] has joined #lnd 12:33 -!- crom_ [b00a89b3@gateway/web/freenode/ip.176.10.137.179] has joined #lnd 12:34 -!- CubicEarths [~cubiceart@190.140.125.142] has joined #lnd 12:40 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 12:43 -!- kim0 [uid105149@ubuntu/member/kim0] has quit [Quit: Connection closed for inactivity] 12:43 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 12:46 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Client Quit] 12:49 <@roasbeef> blademccool: some routing related bugs were fixed in recent commits, but there's tons of old nodes out there, if you check your logs you may see payment attempts if it's still lively 12:49 -!- boltmanchine [~textual@216.15.17.193] has quit [Remote host closed the connection] 12:51 < blademccool> roasbeef: ahh cool. yeah i'm in process of adding extra logging to some of the functions involved in routing to get more insight. of course after i do that and restarted stuff just works great all of a sudden, haha 12:51 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 12:52 <@roasbeef> you know you can tune the logging levels by sub-system? 12:52 <@roasbeef> lncli debuglevel -h 12:52 < blademccool> hrm. well now I do! ty 12:59 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 13:00 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 13:03 -!- crom_ [b00a89b3@gateway/web/freenode/ip.176.10.137.179] has quit [Ping timeout: 260 seconds] 13:04 -!- crom_ [b00a89b3@gateway/web/freenode/ip.176.10.137.179] has joined #lnd 13:09 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 13:10 < blademccool> oh cool, that whole "ATPL=critical,BRAR=critical,BTCN=critical.." format works in the config file too :) 13:13 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 13:16 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Client Quit] 13:19 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 13:44 -!- CubicEarths [~cubiceart@190.140.125.142] has quit [] 13:49 -!- roasbeef changed the topic of #lnd to: lnd - the Lightning Network Daemon (http://lightning.network/) - v0.3-alpha is the latest release - https://github.com/lightningnetwork/lnd - Go 1.9.4 is the recommended version - https://faucet.lightning.community/ - http://dev.lightning.community/ 13:51 < blademccool> cool i've paid starblocks without a direct channel to endurance. it routed through one hop before going through endurance :) 13:51 < blademccool> only channels established with hacked autopilot too. 13:53 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 13:58 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 14:06 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 14:07 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 14:07 -!- simlay [~simlay@gateway/tor-sasl/simlay] has quit [Remote host closed the connection] 14:08 -!- simlay [~simlay@gateway/tor-sasl/simlay] has joined #lnd 14:12 < mlz> i think endurance has a lot of zombies connected to them which may be another cause to blockage to starblocks? 14:13 -!- Pavle [~pavle_@unaffiliated/pavle/x-4679000] has joined #lnd 14:15 < Veggen> anyone else have eclair on mobile fail to their LNDs, now? 14:15 < Veggen> could be that the node the eclairs connect to is still botched. 14:16 <@roasbeef> just paid tostarblocks myself, but yeh wouldn't count on it being suuuper reliable all the time 14:22 -!- erols [~erols@dhcp-077-251-249-036.chello.nl] has quit [Quit: erols] 14:22 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 14:26 -!- belcher [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 14:28 <@roasbeef> https://cr.yp.to/talks/2016.01.15/slides-djb-20160115-a4.pdf 14:29 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 14:31 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Client Quit] 14:33 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 14:34 -!- belcher [~belcher@unaffiliated/belcher] has joined #lnd 14:42 -!- PaulCapestany [~PaulCapes@ip72-209-228-50.dc.dc.cox.net] has quit [Quit: .] 14:45 -!- PaulCapestany [~PaulCapes@ip72-209-228-50.dc.dc.cox.net] has joined #lnd 14:48 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 14:50 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 14:55 -!- marijnfs [~smuxi@2a01:c23:c022:c700:71b2:4ab6:53af:c3cd] has joined #lnd 15:00 -!- marijnfs [~smuxi@2a01:c23:c022:c700:71b2:4ab6:53af:c3cd] has quit [Ping timeout: 256 seconds] 15:03 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 15:04 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has joined #lnd 15:11 -!- creslin [~textual@deposing-waterfront.volia.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 15:21 -!- Pavle [~pavle_@unaffiliated/pavle/x-4679000] has quit [Remote host closed the connection] 15:22 -!- Giszmo [~leo@pc-204-28-214-201.cm.vtr.net] has joined #lnd 15:53 -!- slip [~slim@s91904427.blix.com] has joined #lnd 15:57 < slip> Need to add more funds to my channel. Is that done like "openchannel --node_key=xxxxx --local_amt=100000" ? I mean I already have a open channel. 15:58 < slip> sure there is a fee and all. I know that. But using a cmd called "openchannel" when it is already open sounds odd. 15:59 -!- danrobinson [~danrobins@rrcs-67-251-193-154.nyc.biz.rr.com] has quit [Quit: danrobinson] 16:02 < an0maly> Hello -- new user here, just found a bug in the Tutorial Step 1 16:02 < an0maly> Under "Sending Single Hop Payments", the first command should be: 16:02 < an0maly> bob$ lncli-bob addinvoice --amt=10000 16:02 < an0maly> not bob$ lncli-bob addinvoice --value=10000 16:03 < an0maly> the tutorial is incorrect 16:03 < an0maly> Idk if this has been pointed out or not yet, but I figured I'd bring it up just in case :) 16:05 < mlz> you can do: addinvoice 10000 16:09 -!- Pioklo_ [~Pioklo@118-40.echostar.pl] has quit [Ping timeout: 256 seconds] 16:10 < mlz> in the very early alpha versions we did have "lncli addinvoice --valu=xxxx" 16:10 < mlz> value* 16:15 -!- nirved [~nirved@2a02:8071:b58a:3c00:d4e:6426:974b:5965] has quit [Quit: Leaving] 16:19 -!- wxss [~user@93.190.142.42] has quit [Quit: leaving] 16:32 -!- crom_ [b00a89b3@gateway/web/freenode/ip.176.10.137.179] has quit [Ping timeout: 260 seconds] 16:36 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Ping timeout: 255 seconds] 16:40 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #lnd 16:54 -!- colatkinson [~colatkins@cpe-67-240-56-42.nycap.res.rr.com] has joined #lnd 17:01 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has joined #lnd 17:16 -!- Styil [Styil@gateway/vpn/privateinternetaccess/styil] has joined #lnd 17:26 -github-lnd:#lnd- [lnd] cfromknecht opened pull request #741: utxonursery: fix witness overwriting bug on sweep txn (master...utxn-witness-indexes) https://git.io/vAU3S 17:28 < blademccool> anything special to do to get lnd on one machine to talk to btcd on another? it is complainging about a cert .. i have a cert on the machine that btcd runs on. just copy that or what? 17:34 < blademccool> i specified btcd.rpchost in the config file but it doesnt seem to be using it. i can telnet to that host:port from the machine. the lnd startup just sits there at "[INF] LTND: Initializing btcd backed fee estimator" 17:34 < blademccool> this is after i copy the cert from the machine where btcd runs. without doing that it gives error about not finding cert 17:45 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-imrtpbsdfyctnfgq] has quit [Quit: Connection closed for inactivity] 17:47 -!- whphhg_ [~whphhg@unaffiliated/whphhg] has joined #lnd 17:48 -!- whphhg [~whphhg@unaffiliated/whphhg] has quit [Ping timeout: 248 seconds] 17:58 -!- colatkinson [~colatkins@cpe-67-240-56-42.nycap.res.rr.com] has quit [Quit: colatkinson] 18:03 < blademccool> weird, after a really long timeout it seems it complained about certificate being valid for not the right ip list. can probably work with that. 18:13 -!- bryan_w [~is@2600:2108:9:8a90:5a69:d114:68b8:dae2] has joined #lnd 18:20 < blademccool> course i'd be grateful for any tips on how to make a cert that i can throw on ther other machine when its ip is 1.2.3.4 18:21 -!- CubicEarths [~cubiceart@190.140.125.142] has joined #lnd 18:22 < slip> when adding more funds to your channel do you use openchannel again? never closed just want to add funds 18:27 < an0maly> no need to open a channel that's already open 18:28 < an0maly> mlz: thanks - I figured that the tutorial was written when it worked, just figured I'd point it out since lncli addinvoice --value is an invalid command now, at least on the latest version of lncli :) 18:29 < an0maly> also has anyone ever seen: "unable to create wallet controller: invalid passphrase for master public key unable to create chain control: invalid passphrase for master public key invalid passphrase for master public key" when starting an lnd node with the params --no-macaroons --noencryptwallet before? 18:30 < an0maly> even if I remove the tls.cert and tls.key from my ~/.lnd directory, and regenerate the TLS certifications on my next lnd command, I get the same error.. 18:34 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-tpodpocbiokuhvjo] has joined #lnd 18:35 < slip> an0maly, so how would I "top off" a channel with funds? 18:36 < slip> an0maly, say I have 200000 sat in there. Buy some stickers or what not and funds in the channel are running low. 18:37 < mlz> slip you can ask someone to pay you, or open a new channel, we don't have splicing yet 18:37 < an0maly> slip, does your connected node have an address yet? 18:37 < slip> yes 18:38 < an0maly> set the miningaddr = to that address when you start btcd 18:38 < slip> an0maly, this is on mainnet 18:38 < an0maly> oh 18:38 < an0maly> you're out of my league then, not there yet, sorry :) 18:39 < slip> mlz, was hopping to avoid a onchain fee but at ... 1usd I guess I could live with that =) 18:39 < an0maly> what are you guys building? 18:40 < an0maly> or just playing around? 18:40 < slip> an0maly, I am dicking around with about 25 bucks. Buying stickers and shooting a few sat to friends. 18:41 < an0maly> nice :) 18:42 < slip> mlz, so just make a payment request and have somebody fund me would keep it off chain? 18:44 -!- melvster [~melvin@ip-86-49-18-198.net.upcbroadband.cz] has quit [Ping timeout: 276 seconds] 18:57 -!- CubicEarths [~cubiceart@190.140.125.142] has quit [Remote host closed the connection] 18:57 -!- CubicEarths [~cubiceart@190.140.125.142] has joined #lnd 18:59 < slip> mlz, that worked thx. A friend tossed 10 bucks of btc my way and that topped me off. 19:00 < slip> mlz, anyway to see how many hopes a tx will take before making it? 19:01 -!- CubicEarths [~cubiceart@190.140.125.142] has quit [Ping timeout: 240 seconds] 19:05 < mlz> no clue 19:12 -!- CubicEarths [~cubiceart@190.140.125.142] has joined #lnd 19:22 < slip> roasbeef, anyway to see how many hops a tx will make before the sending funds? 19:22 -!- ChunkyPuffs [~ChunkyPuf@gateway/tor-sasl/chunkypuffs] has quit [Remote host closed the connection] 19:27 -!- belcher [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 19:29 -!- ChunkyPuffs [~ChunkyPuf@gateway/tor-sasl/chunkypuffs] has joined #lnd 19:33 -!- CubicEarths [~cubiceart@190.140.125.142] has quit [] 19:40 -!- danrobinson [~danrobins@2604:2000:e080:d400:ddd0:8c0d:9919:c1a6] has joined #lnd 19:46 -!- danrobinson [~danrobins@2604:2000:e080:d400:ddd0:8c0d:9919:c1a6] has quit [Quit: danrobinson] 19:48 -!- danrobinson [~danrobins@2604:2000:e080:d400:ddd0:8c0d:9919:c1a6] has joined #lnd 19:58 -!- Soopaman [~soopaman@198.16.243.66] has joined #lnd 20:01 -!- Nageki [6c057323@gateway/web/freenode/ip.108.5.115.35] has joined #lnd 20:01 < Nageki> Hia 20:02 -!- danrobinson [~danrobins@2604:2000:e080:d400:ddd0:8c0d:9919:c1a6] has quit [Quit: danrobinson] 20:02 -!- colatkinson [~colatkins@cpe-67-240-56-42.nycap.res.rr.com] has joined #lnd 20:04 -!- danrobinson [~danrobins@2604:2000:e080:d400:ddd0:8c0d:9919:c1a6] has joined #lnd 20:05 -!- Nageki [6c057323@gateway/web/freenode/ip.108.5.115.35] has quit [Client Quit] 20:06 -!- Nageki [6c057323@gateway/web/freenode/ip.108.5.115.35] has joined #lnd 20:08 -!- Nageki [6c057323@gateway/web/freenode/ip.108.5.115.35] has quit [Client Quit] 20:11 -!- Soopaman [~soopaman@198.16.243.66] has quit [Quit: Leaving.] 20:11 -!- CubicEarths [~cubiceart@190.140.125.142] has joined #lnd 20:16 <@roasbeef> slip: not atm, but will likely add that 20:21 -!- Soopaman [~soopaman@198.16.243.66] has joined #lnd 20:24 -!- Soopaman [~soopaman@198.16.243.66] has quit [Client Quit] 20:45 -github-lnd:#lnd- [lnd] cfromknecht opened pull request #742: htlcswitch/switch: select on quit channels for switch commands (master...switch-control-quit) https://git.io/vAU8G 20:46 -github-lnd:#lnd- [lnd] cfromknecht opened pull request #743: breacharbiter: avoid infinite loop in exactRetribution (master...brar-infinite-loop-fix) https://git.io/vAU8W 20:51 -!- danrobinson [~danrobins@2604:2000:e080:d400:ddd0:8c0d:9919:c1a6] has quit [Quit: danrobinson] 20:51 -github-lnd:#lnd- [lnd] asoltys opened pull request #744: lnd: use single asterisk for gitignore wildcards (master...master) https://git.io/vAU8K 21:02 -!- ag1 [bfbd15a5@gateway/web/freenode/ip.191.189.21.165] has joined #lnd 21:03 -!- dubuqingfeng [6a275db2@gateway/web/freenode/ip.106.39.93.178] has joined #lnd 21:05 -!- ag1 [bfbd15a5@gateway/web/freenode/ip.191.189.21.165] has quit [Client Quit] 21:37 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Ping timeout: 255 seconds] 21:43 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #lnd 21:47 <@roasbeef> ah found a regression in autopilot 21:48 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 21:48 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #lnd 22:07 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 22:07 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #lnd 22:15 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-tpodpocbiokuhvjo] has quit [Quit: Connection closed for inactivity] 22:22 -!- CubicEarths [~cubiceart@190.140.125.142] has quit [] 22:27 -!- dubuqingfeng [6a275db2@gateway/web/freenode/ip.106.39.93.178] has quit [Ping timeout: 260 seconds] 22:38 -!- colatkinson [~colatkins@cpe-67-240-56-42.nycap.res.rr.com] has quit [Quit: colatkinson] 22:48 -!- dionysus69 [~Thunderbi@unaffiliated/dionysus69] has joined #lnd 22:55 -!- colatkinson [~colatkins@cpe-67-240-56-42.nycap.res.rr.com] has joined #lnd 23:24 -!- AndBobsYourUncle [~AndBobsYo@cpe-23-240-21-154.socal.res.rr.com] has quit [Ping timeout: 240 seconds] 23:26 -!- creslin [~textual@deposing-waterfront.volia.net] has joined #lnd 23:29 -!- Deadhand [~deadhand@CPE6038e0be3871-CMf0f249a14e40.cpe.net.cable.rogers.com] has quit [Ping timeout: 256 seconds] 23:41 -!- Deadhand [~deadhand@CPE6038e0be3871-CMf0f249a14e40.cpe.net.cable.rogers.com] has joined #lnd 23:46 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Ping timeout: 255 seconds] 23:57 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has joined #lnd