--- Day changed Thu Oct 26 2017 00:12 -!- moriarty [~akmnrkeo@unaffiliated/moriarty] has joined #lnd 01:00 -!- moriarty [~akmnrkeo@unaffiliated/moriarty] has quit [Ping timeout: 255 seconds] 01:04 -!- alreadylate [~textual@37-247-1-221.customers.ownit.se] has joined #lnd 01:13 -!- Emcy [~MC@unaffiliated/emcy] has quit [Read error: Connection reset by peer] 01:51 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-kmslojrsexfbeeoe] has quit [Quit: Connection closed for inactivity] 01:55 -!- sycofly [~sycofly@121.99.240.44] has joined #lnd 01:59 -!- Emcy [~MC@unaffiliated/emcy] has joined #lnd 02:00 -!- mnkk___ [~mnk4@ip5f5ae92a.dynamic.kabel-deutschland.de] has joined #lnd 02:06 -!- Emcy_ [~MC@unaffiliated/emcy] has joined #lnd 02:07 -!- Emcy [~MC@unaffiliated/emcy] has quit [Ping timeout: 260 seconds] 02:09 -!- Emcy [~MC@unaffiliated/emcy] has joined #lnd 02:12 -!- Emcy_ [~MC@unaffiliated/emcy] has quit [Ping timeout: 240 seconds] 02:12 -!- Emcy_ [~MC@unaffiliated/emcy] has joined #lnd 02:16 -!- Emcy [~MC@unaffiliated/emcy] has quit [Read error: Connection reset by peer] 02:47 < stevenroose> aakselrod: I'm looking into setting up one of our projects here to use gprc and macaroons and strangely enough the only project I can find doing that is lnd ;) 02:47 < stevenroose> I have a question (and might have some more later): you put the macaroon in the context under the key "macaroon", encoded as hex 02:47 < stevenroose> Is that common practice? Or did you just decide to do it like that? If so, why hex instead of base64? 03:14 -!- Emcy_ [~MC@unaffiliated/emcy] has quit [Read error: Connection reset by peer] 03:15 -!- Emcy [~MC@unaffiliated/emcy] has joined #lnd 03:19 -!- mnkk___ [~mnk4@ip5f5ae92a.dynamic.kabel-deutschland.de] has quit [Ping timeout: 240 seconds] 03:20 -!- mnkk___ [~mnk4@ip5f5ae92a.dynamic.kabel-deutschland.de] has joined #lnd 03:26 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has quit [Remote host closed the connection] 03:30 -!- sycofly [~sycofly@121.99.240.44] has quit [Read error: Connection reset by peer] 03:32 -!- sycofly [~sycofly@121.99.240.44] has joined #lnd 03:48 -!- sycofly [~sycofly@121.99.240.44] has quit [Quit: This computer has gone to sleep] 04:12 -!- mnkk___ [~mnk4@ip5f5ae92a.dynamic.kabel-deutschland.de] has quit [Read error: Connection reset by peer] 04:12 -!- mnkk___ [~mnk4@ip5f5ae92a.dynamic.kabel-deutschland.de] has joined #lnd 04:34 -!- alreadylate [~textual@37-247-1-221.customers.ownit.se] has quit [] 04:54 -!- whythat [~whythat@gateway/tor-sasl/whythat] has quit [Ping timeout: 248 seconds] 04:57 -!- TerminusAlamond4 [~TerminusA@sj0.logicfailed.com] has joined #lnd 04:59 -!- whythat [~whythat@gateway/tor-sasl/whythat] has joined #lnd 05:05 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Write error: Connection reset by peer] 05:05 -!- dermoth [~dermoth@gateway/tor-sasl/dermoth] has quit [Remote host closed the connection] 05:05 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 05:05 -!- whythat [~whythat@gateway/tor-sasl/whythat] has quit [Remote host closed the connection] 05:05 -!- cryptosoap [~cryptosoa@gateway/tor-sasl/abcmonero] has quit [Write error: Broken pipe] 05:05 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Write error: Connection reset by peer] 05:05 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #lnd 05:06 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #lnd 05:06 -!- cryptosoap [~cryptosoa@gateway/tor-sasl/abcmonero] has joined #lnd 05:07 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #lnd 05:14 -!- whythat [~whythat@gateway/tor-sasl/whythat] has joined #lnd 05:33 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 05:51 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #lnd 05:55 < aakselrod> stevenroose: we just decided to do it like that, i haven't seen anyone else using macaroons in grpc. i don't remember why i chose hex instead of base64, but i think base64 is a better idea and we'll probably end up moving toward that when we change macaroon encodings to the new one. 05:55 < stevenroose> aakselrod: new macaroon encodings? 05:55 < aakselrod> probably because i was working with block and tx hashes and they're all hex-encoded so my mind was in that space 05:55 < stevenroose> yeah makes sense 05:55 < aakselrod> yes, let me find a link real quick 05:56 < stevenroose> you don't reuse any existing structs for the grpc interface, right? 05:56 < stevenroose> I mean even if there would be a grpc rpc getBlock or so, you'd translate it into a lnrpc.GetBlockResponse value by value 05:56 < stevenroose> right? 05:57 < stevenroose> I'm thinking about porting btcd to grpc and macaroons as well after I get a bit more familiar with it in this work project 05:57 < aakselrod> https://groups.google.com/forum/#!topic/macaroons/EIDUZQoelq8 05:57 < stevenroose> Thanks 05:59 -!- spinza [~spin@196.212.164.26] has quit [Ping timeout: 240 seconds] 05:59 < aakselrod> re. reusing existing structs, i'm not sure... my only contribution to the grpc bit was the macaroon metadata so far :P you'd have to look through the code to check 06:00 < aakselrod> sorry i don't have a better answer off the top of my head 06:00 < stevenroose> Oh, no I thought you did the grpc bit because I saw TODO(aakselrod)'s there, but yeah only on the macaroons bit 06:00 < aakselrod> yeah 06:01 < aakselrod> bbiaf, gotta take kiddo to school 06:01 < stevenroose> :D have fun 06:01 < aakselrod> thanks :P 06:09 -!- rafalcpp_ [~racalcppp@84-10-11-234.static.chello.pl] has quit [] 06:09 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #lnd 06:13 < stevenroose> aakselrod, roasbeef: any of you guys heading to devcon next week? 06:19 -!- spinza [~spin@196.212.164.26] has joined #lnd 06:41 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Ping timeout: 248 seconds] 06:45 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #lnd 06:53 -!- Emcy [~MC@unaffiliated/emcy] has quit [Read error: Connection reset by peer] 06:54 -!- Emcy [~MC@unaffiliated/emcy] has joined #lnd 06:57 -!- alreadylate [~textual@37-247-1-221.customers.ownit.se] has joined #lnd 07:48 -!- Emcy [~MC@unaffiliated/emcy] has quit [Read error: Connection reset by peer] 07:49 -!- Emcy [~MC@94.197.121.115.threembb.co.uk] has joined #lnd 07:49 -!- Emcy [~MC@94.197.121.115.threembb.co.uk] has quit [Changing host] 07:49 -!- Emcy [~MC@unaffiliated/emcy] has joined #lnd 07:55 -!- Emcy [~MC@unaffiliated/emcy] has quit [Read error: Connection reset by peer] 08:01 -!- gaf_ [~fag@12.smos-linux.org] has quit [Quit: SMOS - http://smos-linux.org] 08:05 -!- whythat [~whythat@gateway/tor-sasl/whythat] has quit [Ping timeout: 248 seconds] 08:08 -!- whythat [~whythat@gateway/tor-sasl/whythat] has joined #lnd 08:40 -!- deusexbeer [~deusexbee@095-129-175-248-dynamic-pool-adsl.wbt.ru] has quit [Ping timeout: 258 seconds] 08:49 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Remote host closed the connection] 08:50 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #lnd 08:57 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-buzvrvqvkwoqawjc] has quit [Quit: Connection closed for inactivity] 09:00 -!- whythat [~whythat@gateway/tor-sasl/whythat] has quit [Ping timeout: 248 seconds] 09:15 < aakselrod> stevenroose: i'm not 09:25 -!- [a]akselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has joined #lnd 09:27 -!- aakselrod [~aakselrod@gateway/vpn/privateinternetaccess/aakselrod] has quit [Ping timeout: 240 seconds] 09:38 -!- sdfgsdfg [~sdfgsdfg@unaffiliated/sdfgsdfg] has quit [Ping timeout: 240 seconds] 10:09 -!- cryptosoap [~cryptosoa@gateway/tor-sasl/abcmonero] has quit [Ping timeout: 248 seconds] 10:11 -!- cryptosoap [~cryptosoa@gateway/tor-sasl/abcmonero] has joined #lnd 10:18 -!- sycofly [~sycofly@121.99.240.44] has joined #lnd 10:29 -!- Emcy [~MC@unaffiliated/emcy] has joined #lnd 10:59 -!- sycofly [~sycofly@121.99.240.44] has quit [Quit: This computer has gone to sleep] 11:31 -!- MaxSan [~user@213.152.162.84] has joined #lnd 11:55 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-hawfcpvtbhlnllli] has joined #lnd 11:57 -!- MaxSan [~user@213.152.162.84] has quit [Quit: Leaving.] 11:58 -!- MaxSan [~user@213.152.162.84] has joined #lnd 12:02 -!- alreadylate [~textual@37-247-1-221.customers.ownit.se] has quit [] 12:41 -!- bule [~bule@gateway/tor-sasl/bule] has joined #lnd 13:08 -!- whythat [~whythat@gateway/tor-sasl/whythat] has joined #lnd 13:39 -!- alreadylate [~textual@c-250e71d5.153-1-64736c10.cust.bredbandsbolaget.se] has joined #lnd 13:48 -!- alreadylate [~textual@c-250e71d5.153-1-64736c10.cust.bredbandsbolaget.se] has quit [] 14:01 -!- bule [~bule@gateway/tor-sasl/bule] has quit [Ping timeout: 248 seconds] 14:02 -!- alreadylate [~textual@c-250e71d5.153-1-64736c10.cust.bredbandsbolaget.se] has joined #lnd 14:40 -!- alreadylate [~textual@c-250e71d5.153-1-64736c10.cust.bredbandsbolaget.se] has quit [] 14:52 -!- PaulCapestany [~PaulCapes@ip68-100-207-53.dc.dc.cox.net] has joined #lnd 15:13 -!- quitobro [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has joined #lnd 15:13 <@roasbeef> stevenroose: noep 15:39 -!- sdfgsdfg [~sdfgsdfg@unaffiliated/sdfgsdfg] has joined #lnd 15:51 -!- booyah_ is now known as booyah 15:51 -!- JackH [~laptop@host-80-47-85-226.as13285.net] has quit [Ping timeout: 264 seconds] 15:52 -!- JackH [~laptop@host-80-47-85-226.as13285.net] has joined #lnd 15:54 -!- bule [~bule@gateway/tor-sasl/bule] has joined #lnd 16:06 -!- JackH [~laptop@host-80-47-85-226.as13285.net] has quit [Ping timeout: 252 seconds] 16:22 -!- JackH [~laptop@host-80-47-85-226.as13285.net] has joined #lnd 16:34 -!- JackH [~laptop@host-80-47-85-226.as13285.net] has quit [Ping timeout: 248 seconds] 16:41 -!- bule [~bule@gateway/tor-sasl/bule] has quit [Remote host closed the connection] 16:42 -!- JackH [~laptop@host-80-47-85-226.as13285.net] has joined #lnd 16:46 -!- Emcy_ [~MC@unaffiliated/emcy] has joined #lnd 16:47 -!- Emcy [~MC@unaffiliated/emcy] has quit [Ping timeout: 264 seconds] 16:54 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has quit [Ping timeout: 260 seconds] 17:04 -!- rafalcpp [~racalcppp@84-10-11-234.static.chello.pl] has joined #lnd 17:20 -!- JackH [~laptop@host-80-47-85-226.as13285.net] has quit [Ping timeout: 248 seconds] 17:35 -!- JackH [~laptop@host-80-47-85-226.as13285.net] has joined #lnd 17:59 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has joined #lnd 18:01 -!- JackH [~laptop@host-80-47-85-226.as13285.net] has quit [Ping timeout: 240 seconds] 18:12 -!- dabura667 [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has quit [Read error: Connection reset by peer] 18:12 -!- dabura667_ [~dabura667@p98110-ipngnfx01marunouchi.tokyo.ocn.ne.jp] has joined #lnd 18:15 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-hawfcpvtbhlnllli] has quit [Quit: Connection closed for inactivity] 18:16 -!- meshcollider [uid246294@gateway/web/irccloud.com/x-wsypnkjnwqcqbvcm] has joined #lnd 18:48 -!- quitobro [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has quit [Quit: quitobro] 19:24 -!- sdfgsdfg [~sdfgsdfg@unaffiliated/sdfgsdfg] has quit [Ping timeout: 255 seconds] 20:12 -!- JackH [~laptop@host-80-47-85-226.as13285.net] has joined #lnd 20:19 -!- sdfgsdfg [~sdfgsdfg@unaffiliated/sdfgsdfg] has joined #lnd 21:57 -!- whythat [~whythat@gateway/tor-sasl/whythat] has quit [Ping timeout: 248 seconds] 22:12 -!- whythat [~whythat@gateway/tor-sasl/whythat] has joined #lnd 22:13 -!- mlz [~IRCIdent@unaffiliated/molly] has joined #lnd 22:22 -!- molz [~molly@unaffiliated/molly] has quit [Read error: Connection reset by peer] 22:33 -!- lndnoob [96f94c66@gateway/web/freenode/ip.150.249.76.102] has joined #lnd 22:34 < lndnoob> anyone here? 22:34 < lndnoob> I'm trying to get this demo working: https://github.com/lightningnetwork/lnd/tree/master/docker 22:34 < lndnoob> but am getting go rpc errors every time 22:34 < lndnoob> [lncli] rpc error: code = Unimplemented desc = unknown service lnrpc.Lightning 22:35 < lndnoob> can someone point me in the right direction pls? 23:03 -!- quitobro [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has joined #lnd 23:10 -!- rob [32e1ca36@gateway/web/freenode/ip.50.225.202.54] has joined #lnd 23:11 -!- rob is now known as Guest66009 23:11 -!- Guest66009 [32e1ca36@gateway/web/freenode/ip.50.225.202.54] has quit [Client Quit] 23:34 -!- sdfgsdfg [~sdfgsdfg@unaffiliated/sdfgsdfg] has quit [Ping timeout: 260 seconds] 23:35 -!- bule [~bule@gateway/tor-sasl/bule] has joined #lnd 23:45 -!- lndnoob [96f94c66@gateway/web/freenode/ip.150.249.76.102] has quit [Quit: Page closed] 23:47 -!- sdfgsdfg [~sdfgsdfg@unaffiliated/sdfgsdfg] has joined #lnd 23:52 -!- quitobro [~quitobro@gateway/vpn/privateinternetaccess/quitobro] has quit [Quit: quitobro]