--- Log opened Mon Sep 03 00:00:58 2018 00:02 -!- HoloIRCUser2 [~holoirc@x2f7f928.dyn.telefonica.de] has quit [Read error: Connection reset by peer] 00:03 -!- HoloIRCUser [~holoirc@business-24-134-8-161.pool2.vodafone-ip.de] has joined #bitcoin-wizards 00:06 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has joined #bitcoin-wizards 00:11 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has quit [Ping timeout: 252 seconds] 00:23 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has joined #bitcoin-wizards 00:25 -!- HoloIRCUser [~holoirc@business-24-134-8-161.pool2.vodafone-ip.de] has quit [Ping timeout: 252 seconds] 01:00 -!- dcousens [~dcousens@110.140.174.10] has joined #bitcoin-wizards 01:03 -!- setpill [~setpill@unaffiliated/setpill] has joined #bitcoin-wizards 01:14 -!- deusexbeer [~deusexbee@095-129-170-079-dynamic-pool-adsl.wbt.ru] has joined #bitcoin-wizards 01:22 -!- setpill [~setpill@unaffiliated/setpill] has quit [Ping timeout: 250 seconds] 01:24 -!- setpill [~setpill@unaffiliated/setpill] has joined #bitcoin-wizards 01:33 -!- Zenton [~user@unaffiliated/vicenteh] has joined #bitcoin-wizards 01:51 < maaku> It seems with MW you knwo the outputs that are yours because you generated them, in an ideal sense, but in reality people do things like backup wallets and expect to recover future transactions 01:52 < maaku> so you have to scan every single output. what I'm curious is if there's some other construction that could be made more efficient for this, while still allowing unexpected payments using scripted outputs 02:10 -!- esotericnonsense [~esotericn@unaffiliated/esotericnonsense] has quit [Ping timeout: 272 seconds] 02:55 -!- deusexbeer [~deusexbee@095-129-170-079-dynamic-pool-adsl.wbt.ru] has quit [Ping timeout: 246 seconds] 02:55 -!- deusexbeer [~deusexbee@080-250-077-052-dynamic-pool-adsl.wbt.ru] has joined #bitcoin-wizards 03:11 -!- marikos [~textual@adsl-212.37.6.216.tellas.gr] has joined #bitcoin-wizards 03:11 -!- marikos [~textual@adsl-212.37.6.216.tellas.gr] has quit [Client Quit] 03:13 -!- antanst_ [~antanst@adsl-212.37.6.216.tellas.gr] has joined #bitcoin-wizards 03:25 -!- grubles_ [~grubles@gateway/tor-sasl/grubles] has joined #bitcoin-wizards 03:26 -!- ghost43 [~daer@gateway/tor-sasl/daer] has quit [Ping timeout: 250 seconds] 03:26 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #bitcoin-wizards 03:27 -!- grubles [~grubles@gateway/tor-sasl/grubles] has quit [Ping timeout: 250 seconds] 03:35 -!- antanst_ [~antanst@adsl-212.37.6.216.tellas.gr] has quit [Quit: Textual IRC Client: www.textualapp.com] 03:35 -!- antanst_ [~antanst@adsl-212.37.6.216.tellas.gr] has joined #bitcoin-wizards 03:54 -!- kallewoof [~quassel@240d:1a:759:6000:a7b1:451a:8874:e1ac] has quit [Ping timeout: 250 seconds] 03:56 -!- kallewoof [~quassel@fp96f94c66.tkyc515.ap.nuro.jp] has joined #bitcoin-wizards 04:09 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-wizards 04:30 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Read error: Connection timed out] 04:31 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-wizards 04:42 -!- setpill [~setpill@unaffiliated/setpill] has quit [Ping timeout: 240 seconds] 04:42 -!- setpill [~setpill@unaffiliated/setpill] has joined #bitcoin-wizards 04:43 -!- enemabandit [~enemaband@185.227.37.188.rev.vodafone.pt] has joined #bitcoin-wizards 04:47 -!- setpill [~setpill@unaffiliated/setpill] has quit [Ping timeout: 240 seconds] 04:48 -!- setpill [~setpill@unaffiliated/setpill] has joined #bitcoin-wizards 04:52 -!- Guyver2 [~Guyver@guyver2.xs4all.nl] has joined #bitcoin-wizards 05:03 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has quit [Remote host closed the connection] 05:04 -!- antanst [~antanst@62.169.219.213] has quit [Ping timeout: 246 seconds] 05:04 -!- antanst [~antanst@62.169.219.213] has joined #bitcoin-wizards 05:24 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 05:38 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-wizards 05:54 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-wizards 06:05 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [Ping timeout: 252 seconds] 06:13 < andytoshi> maaku: essentially yes, you have a secret blinding key and everything in the txout is encrypted to yourself using that (it's not AES but it could be; it's xoring with the random stream that you used to generate the rangeproof in the first place) 06:14 < andytoshi> and no, i'm not aware of any more efficient construction. with switch commitments you have a "free point" that you can make more directly recognizeable 06:16 < andytoshi> in addition to the encryption, you could grind your rangeproofs or points so that the first byte or two was 0 when hashed alongside some secret.. this would let you eliminate the majority of outputs in 100s of ns each (and this check would be done before the ecdh) 06:17 < andytoshi> so there are certainly hacks like that that make "scan everything" useable in practice 06:23 -!- antanst_ [~antanst@adsl-212.37.6.216.tellas.gr] has quit [Ping timeout: 272 seconds] 06:25 < instagibbs> maaku, wasn't talking about MW, guess I missed the additional scrollback 06:32 -!- setpill [~setpill@unaffiliated/setpill] has quit [Ping timeout: 250 seconds] 06:34 -!- setpill [~setpill@unaffiliated/setpill] has joined #bitcoin-wizards 06:34 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has quit [Ping timeout: 250 seconds] 06:34 -!- belcher_ [~belcher@unaffiliated/belcher] has joined #bitcoin-wizards 06:37 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-wizards 06:38 -!- setpill [~setpill@unaffiliated/setpill] has quit [Client Quit] 07:06 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has joined #bitcoin-wizards 07:13 -!- samm__ [~samm@176-161-115-196.abo.bbox.fr] has quit [Ping timeout: 240 seconds] 07:31 -!- Deinogalerix21 [~Deinogale@185.169.255.9] has joined #bitcoin-wizards 07:34 -!- samm_ [~samm@176-161-115-196.abo.bbox.fr] has joined #bitcoin-wizards 08:00 -!- Deinogalerix21 [~Deinogale@185.169.255.9] has quit [Quit: WeeChat 2.2] 08:17 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has joined #bitcoin-wizards 08:25 -!- narodnik [~kk@2a00:1508:1:f018:4c37:fc3c:b0fa:f386] has joined #bitcoin-wizards 08:45 -!- wildermind [uid300433@gateway/web/irccloud.com/x-ezfzhncubtbytlzp] has joined #bitcoin-wizards 08:49 -!- Krellan [~Krellan@2601:640:4000:9258:ed79:3217:ecfd:9f89] has joined #bitcoin-wizards 09:14 -!- p0nziph0ne [p0nziph0ne@gateway/vpn/privateinternetaccess/p0nziph0ne] has joined #bitcoin-wizards 09:27 -!- TheoStorm [~dnaleor@host-lzquwqj.cbn1.zeelandnet.nl] has quit [Quit: Leaving] 09:33 -!- thrmo [~thrmo@gateway/tor-sasl/thrmo] has joined #bitcoin-wizards 09:35 -!- enemabandit [~enemaband@185.227.37.188.rev.vodafone.pt] has quit [Ping timeout: 240 seconds] 09:51 -!- thrmo_ [~thrmo@gateway/tor-sasl/thrmo] has joined #bitcoin-wizards 09:51 -!- thrmo [~thrmo@gateway/tor-sasl/thrmo] has quit [Ping timeout: 250 seconds] 10:15 < maaku> andytoshi: I was trying to work out your statement "oh, that does not include the ECDH. you'd need to use some symmetric key to actually get that performance." 10:18 < nsh> i guess it was relative to "but we got trial-rewinding down to 3.5 nanoseconds" 10:18 < maaku> so to be clear, for CT you would have to finish the ECDH to get the blinding factor. for MW you generate the blinding factor by whatever means and try it, and that's significantly faster than ECDH? 10:20 -!- narodnik [~kk@2a00:1508:1:f018:4c37:fc3c:b0fa:f386] has quit [Remote host closed the connection] 10:20 -!- narodnik [~kk@2a00:1508:1:f018:4c37:fc3c:b0fa:f386] has joined #bitcoin-wizards 10:21 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 240 seconds] 10:21 -!- narodnik [~kk@2a00:1508:1:f018:4c37:fc3c:b0fa:f386] has quit [Remote host closed the connection] 10:24 -!- Guest79908 [~GAit@unaffiliated/gait] has quit [Quit: WeeChat 1.0.1] 10:24 -!- GAit [~GAit@unaffiliated/gait] has joined #bitcoin-wizards 10:29 < andytoshi> maaku: yes 10:29 < andytoshi> with old-school rangeproofs it was like 8ms to try the ECDH key, so the tens of microseconds that you need to compute it wasn't really too important (and scanning every output was completely impractical) 10:30 < andytoshi> with bulletproofs, once you have a nonce somehow, you can do a preliminary check in less than 3.5 microseconds, which is practical for every output even in bitcoin (if you're willing to spend an hour or so, e.g during wallet restore) 10:30 < andytoshi> but then "tens of microseconsd to do a ECDH" makes it impractical again 10:34 -!- schmidty [~schmidty@unaffiliated/schmidty] has quit [Ping timeout: 245 seconds] 10:35 -!- Zenton [~user@unaffiliated/vicenteh] has quit [Ping timeout: 272 seconds] 10:37 < maaku> andytoshi: ok thanks. just wanted to make sure we're on the same page (we are) 10:38 < andytoshi> excellent 10:39 < maaku> "symmetric key" threw me into thinking you were talking about CT-land with senders AES-encrypting nonces, which of course would work but with terrible privacy properties 10:40 < maaku> but you just meant how the nonces are generated inside the MW wallet 10:41 < andytoshi> ah yep 10:41 < andytoshi> i've considered doing AES-encrypted nonces from sender to receiver .. the issue is not so much privacy as it is key management .. you need to somehow share a key between every pair of transactors and there's just no practical way to do this without DH 10:42 < maaku> yup 10:43 < maaku> my musing above, before this tangent, was whether there is some homomorphism that can be exploited to make an index of outputs for block though, to get better than linear scanning time 10:43 < maaku> but at 3.5ns that's not necessary 10:44 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-wizards 10:44 < maaku> actually it would be good for SPV clients though 10:44 < maaku> client-side block filtering for MW wallets 10:45 < andytoshi> 3.5 µs, not ns .. but yeah 10:45 < andytoshi> for individual blocks it's definitely performant enough even for very weak machines 10:50 -!- Belkaar [~Belkaar@unaffiliated/belkaar] has quit [Ping timeout: 245 seconds] 10:54 -!- Belkaar [~Belkaar@xdsl-78-34-245-76.netcologne.de] has joined #bitcoin-wizards 10:54 -!- Belkaar [~Belkaar@xdsl-78-34-245-76.netcologne.de] has quit [Changing host] 10:54 -!- Belkaar [~Belkaar@unaffiliated/belkaar] has joined #bitcoin-wizards 10:56 -!- Krellan [~Krellan@2601:640:4000:9258:ed79:3217:ecfd:9f89] has quit [Read error: Connection reset by peer] 10:57 -!- Krellan [~Krellan@2601:640:4000:9258:ed79:3217:ecfd:9f89] has joined #bitcoin-wizards 11:09 -!- douglas_ [~douglas@c-73-234-93-65.hsd1.nh.comcast.net] has joined #bitcoin-wizards 11:12 -!- grubles_ is now known as grubles 11:14 -!- jb55 [~jb55@S010660e327dca171.vc.shawcable.net] has joined #bitcoin-wizards 11:32 < wildermind> does bitcoin core node has the option of blacklisting some other nodes ? is it done manually meaning, using the CLI/list or, programatically meaning that some behavior will lead to blacklisting? Also, what does the node do when it's low on peers? could anyone point me to a resource? I did read ALL the docs regarding the p2p in bitcoin.org 11:35 < belcher_> #bitcoin is a better channel for questions like that wildermind 11:36 < wildermind> belcher_: ok ty 11:58 -!- SopaXorzTaker [~SopaXorzT@unaffiliated/sopaxorztaker] has quit [Remote host closed the connection] 11:59 < ECH> maaku: So I took the plunge. 11:59 < ECH> I tried to write up an overview of CT after our convo. 11:59 < ECH> Would you be interested in taking a look at it? 12:02 < ECH> Only part I got confused at was the part when you said that the Confidential Transaction Output is "{Pedersen commitment, ecdh nonce, scriptPubKey}" 12:02 < maaku> sure I can take a look at it 12:02 < ECH> I'm not sure what the ecdh nonce refers to. Is that the blinding key? Or is that the random number multiplied with the blinding key? 12:02 < maaku> or you can post to this channel and others can review too 12:03 < ECH> lol okay. 12:03 < maaku> it is (blinding factor) * (sender's ephemeral secret) * G 12:04 < ECH> Got it. 12:04 < maaku> er, (nonce) * (sender's ephemeral secret) * G 12:04 < maaku> which multiplied by the receiver's secret blinding key (and hashed) is the blinding factor 12:04 < maaku> sorry. In the CT source we called it "nonce" which is a terrible name. 12:04 < ECH> Yea... 12:05 < ECH> I get it confused with like mining nonce's 12:05 < maaku> it's a partial-ECDH protocol transcript 12:05 < ECH> Okay let me edit it and I'll post it for review. 12:05 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-wizards 12:05 < maaku> especially bad because nonce means "number used once" and it's not even a number.. it's an EC point 12:05 < ECH> lol 12:06 < ECH> okay will post in a few hours after lunch and what not. 12:08 -!- TheoStorm [~dnaleor@78-23-74-78.access.telenet.be] has joined #bitcoin-wizards 12:10 -!- Netsplit *.net <-> *.split quits: moneyball, Taek, fronti, nsh, takinbo, emzy, skeees, PsychoticBoy_, dabura667, ThisAsYou 12:10 -!- mr_burdell [~mr_burdel@unaffiliated/mr-burdell/x-7609603] has joined #bitcoin-wizards 12:10 -!- fronti_ [~fronti@irc.fh-biergarten.de] has joined #bitcoin-wizards 12:10 -!- emzy [~quassel@raspberry.emzy.de] has joined #bitcoin-wizards 12:10 -!- Netsplit *.net <-> *.split quits: eragmus, suraeNoether, Chex, arubi, aspect_, grubles, Guest8683, ghost43, sipa, intcat, (+2 more, use /NETSPLIT to show all of them) 12:10 -!- Netsplit over, joins: Alanius 12:10 -!- eragmus [sid136308@gateway/web/irccloud.com/x-meokyeujysfoefil] has joined #bitcoin-wizards 12:11 -!- aspect_ [sid151486@gateway/web/irccloud.com/x-ylucihcayazsrcnc] has joined #bitcoin-wizards 12:11 -!- moneyball [sid299869@gateway/web/irccloud.com/x-jsvlwkbvveurxutb] has joined #bitcoin-wizards 12:11 -!- dabura667 [sid43070@gateway/web/irccloud.com/x-uqmbvbdllfbjgnma] has joined #bitcoin-wizards 12:11 -!- suraeNoether [sid231938@gateway/web/irccloud.com/x-vgmannuyhxewkkju] has joined #bitcoin-wizards 12:11 -!- skeees [sid294661@gateway/web/irccloud.com/x-oumjttyokwvjrjfx] has joined #bitcoin-wizards 12:11 -!- takinbo [sid19838@gateway/web/irccloud.com/x-snnfdfgetuueqddr] has joined #bitcoin-wizards 12:11 -!- Netsplit over, joins: Taek 12:11 -!- PsychoticBoy_ [sid27029@gateway/web/irccloud.com/x-pnihtfcyugnujttd] has joined #bitcoin-wizards 12:11 -!- ThisAsYou [sid214210@gateway/web/irccloud.com/x-hoqjiwchinhpjmma] has joined #bitcoin-wizards 12:13 -!- takinbo [sid19838@gateway/web/irccloud.com/x-snnfdfgetuueqddr] has quit [Changing host] 12:13 -!- takinbo [sid19838@unaffiliated/takinbo] has joined #bitcoin-wizards 12:13 -!- takinbo [sid19838@unaffiliated/takinbo] has quit [Changing host] 12:13 -!- takinbo [sid19838@gateway/web/irccloud.com/x-snnfdfgetuueqddr] has joined #bitcoin-wizards 12:14 -!- ghost43 [~daer@gateway/tor-sasl/daer] has joined #bitcoin-wizards 12:15 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-wizards 12:15 -!- tombusby [~tombusby@gateway/tor-sasl/tombusby] has joined #bitcoin-wizards 12:19 -!- nsh [~lol@wikipedia/nsh] has joined #bitcoin-wizards 12:20 -!- Chex [sss@sleepl.northnook.ca] has joined #bitcoin-wizards 12:20 -!- Chex is now known as Guest27417 12:21 -!- sipa [~pw@gateway/tor-sasl/sipa1024] has joined #bitcoin-wizards 12:22 -!- p0nziph0ne [p0nziph0ne@gateway/vpn/privateinternetaccess/p0nziph0ne] has quit [Quit: Leaving] 12:24 -!- enemabandit [~enemaband@16.77.54.77.rev.vodafone.pt] has joined #bitcoin-wizards 12:27 -!- intcat [~zshlyk@gateway/tor-sasl/intcat] has joined #bitcoin-wizards 12:38 -!- ryanofsky [russ@jumpy.yanofsky.org] has quit [Quit: ZNC 1.7.0 - https://znc.in] 12:39 < ECH> Sorry one last question. The amount of BTC in the transaction. Is that hidden in the Pederson commitment or in the ecdh nonce? 12:40 -!- ryanofsky [~russ@jumpy.yanofsky.org] has joined #bitcoin-wizards 12:44 -!- Guest27417 is now known as Chex 12:44 -!- Chex is now known as Guest70665 12:48 -!- Zenton [~user@unaffiliated/vicenteh] has joined #bitcoin-wizards 12:48 -!- Guest70665 is now known as Chex 12:52 < maaku> ECH: the Pedersen commitment 13:05 -!- antanst_ [~antanst@37.6.195.202] has joined #bitcoin-wizards 13:07 -!- thrmo [~thrmo@gateway/tor-sasl/thrmo] has joined #bitcoin-wizards 13:08 < ECH> Okay. Here it is: https://docs.google.com/document/d/1mkmc5Wd8sSPi6ZNSRr-qSTjDKq3jFxoLHiTS0tkqNi0/edit?usp=sharing 13:09 < ECH> I'm still unsure about the ecdh nonce part. But I feel like I was able to convey the general key concepts. I didn't go into the nitty gritty math details though. 13:25 -!- grubles [~grubles@gateway/tor-sasl/grubles] has joined #bitcoin-wizards 13:27 -!- newbie is now known as newbie-- 13:36 -!- ryanofsky [~russ@jumpy.yanofsky.org] has quit [Remote host closed the connection] 13:36 -!- ryanofsky_ [russ@jumpy.yanofsky.org] has joined #bitcoin-wizards 13:42 -!- ryanofsky_ is now known as ryanofsky 14:03 -!- antanst_ [~antanst@37.6.195.202] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 14:14 -!- emzy [~quassel@raspberry.emzy.de] has quit [Changing host] 14:14 -!- emzy [~quassel@unaffiliated/emzy] has joined #bitcoin-wizards 14:14 -!- emzy is now known as Emzy 14:18 -!- hardforkthis [~tylevine@li120-195.members.linode.com] has quit [Quit: The Lounge - https://thelounge.github.io] 14:18 -!- hardforkthis [~tylevine@li120-195.members.linode.com] has joined #bitcoin-wizards 14:36 -!- ryanofsky [russ@jumpy.yanofsky.org] has quit [Remote host closed the connection] 14:36 -!- ryanofsky [~russ@jumpy.yanofsky.org] has joined #bitcoin-wizards 14:37 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 240 seconds] 14:38 -!- Guyver2 [~Guyver@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 14:42 -!- son0p_ [~ff@181.137.68.184] has joined #bitcoin-wizards 14:44 -!- CubicEarth [~CubicEart@c-73-181-185-197.hsd1.wa.comcast.net] has quit [Ping timeout: 246 seconds] 14:45 -!- TheoStorm [~dnaleor@78-23-74-78.access.telenet.be] has quit [Quit: Leaving] 14:46 -!- CubicEarth [~CubicEart@c-73-181-185-197.hsd1.wa.comcast.net] has joined #bitcoin-wizards 14:51 -!- tin_ [~tyn@2601:645:4100:87b0:1cd6:4353:677c:a452] has joined #bitcoin-wizards 14:52 -!- hardforkthis [~tylevine@li120-195.members.linode.com] has quit [Quit: The Lounge - https://thelounge.github.io] 14:59 -!- thrmo_ [~thrmo@gateway/tor-sasl/thrmo] has joined #bitcoin-wizards 14:59 -!- thrmo [~thrmo@gateway/tor-sasl/thrmo] has quit [Ping timeout: 256 seconds] 14:59 -!- thrmo_ is now known as thrmo 15:05 -!- thrmo [~thrmo@gateway/tor-sasl/thrmo] has quit [Ping timeout: 256 seconds] 15:13 -!- TheoStorm [~dnaleor@host-lzquwqj.cbn1.zeelandnet.nl] has joined #bitcoin-wizards 15:16 -!- hardforkthis [~tylevine@li120-195.members.linode.com] has joined #bitcoin-wizards 15:16 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-wizards 15:16 -!- son0p_ [~ff@181.137.68.184] has quit [Quit: Lost terminal] 15:21 -!- Chris_Stewart_5 [~chris@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 246 seconds] 15:22 -!- belcher_ [~belcher@unaffiliated/belcher] has quit [Quit: Leaving] 15:22 -!- thrmo [~thrmo@gateway/tor-sasl/thrmo] has joined #bitcoin-wizards 15:37 -!- enemabandit [~enemaband@16.77.54.77.rev.vodafone.pt] has quit [Ping timeout: 246 seconds] 15:38 -!- tin_ [~tyn@2601:645:4100:87b0:1cd6:4353:677c:a452] has quit [Ping timeout: 240 seconds] 15:55 -!- tin_ [~tyn@73.93.141.5] has joined #bitcoin-wizards 16:13 -!- tin_ [~tyn@73.93.141.5] has quit [Ping timeout: 240 seconds] 16:16 -!- spinza [~spin@155.93.246.187] has quit [Ping timeout: 245 seconds] 16:18 -!- johntramp [~john@175.111.102.145] has quit [Ping timeout: 245 seconds] 16:19 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-wizards 16:30 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has quit [Remote host closed the connection] 16:45 -!- johntramp [~john@175.111.102.145] has joined #bitcoin-wizards 16:46 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has joined #bitcoin-wizards 16:50 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has quit [Ping timeout: 252 seconds] 17:17 -!- johntramp [~john@175.111.102.145] has quit [Changing host] 17:17 -!- johntramp [~john@unaffiliated/johntramp] has joined #bitcoin-wizards 17:19 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has joined #bitcoin-wizards 17:22 -!- d9b4bef9 [~d9b4bef9@web501.webfaction.com] has quit [Disconnected by services] 17:22 -!- Krellan [~Krellan@2601:640:4000:9258:ed79:3217:ecfd:9f89] has quit [Read error: Connection reset by peer] 17:22 -!- Krellan [~Krellan@2601:640:4000:9258:ed79:3217:ecfd:9f89] has joined #bitcoin-wizards 17:24 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Ping timeout: 256 seconds] 17:24 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has quit [Ping timeout: 272 seconds] 17:29 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-wizards 17:34 -!- Kaizen_ [~kaizen_@172.56.40.181] has joined #bitcoin-wizards 17:35 -!- Kaizen__ [~kaizen_@69.162.16.17] has joined #bitcoin-wizards 17:38 -!- Kaizen_ [~kaizen_@172.56.40.181] has quit [Ping timeout: 244 seconds] 17:49 -!- e4xit [~e4xit@cpc123762-trow7-2-0-cust7.18-1.cable.virginm.net] has quit [Ping timeout: 252 seconds] 17:50 -!- e4xit [~e4xit@cpc123762-trow7-2-0-cust7.18-1.cable.virginm.net] has joined #bitcoin-wizards 18:02 -!- Kaizen__ [~kaizen_@69.162.16.17] has quit [Remote host closed the connection] 18:12 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [] 18:33 -!- Belkaar [~Belkaar@unaffiliated/belkaar] has quit [Ping timeout: 240 seconds] 18:33 -!- Belkaar [~Belkaar@xdsl-87-78-162-18.netcologne.de] has joined #bitcoin-wizards 18:33 -!- Belkaar [~Belkaar@xdsl-87-78-162-18.netcologne.de] has quit [Changing host] 18:33 -!- Belkaar [~Belkaar@unaffiliated/belkaar] has joined #bitcoin-wizards 18:58 -!- wildermind [uid300433@gateway/web/irccloud.com/x-ezfzhncubtbytlzp] has quit [Quit: Connection closed for inactivity] 19:04 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has joined #bitcoin-wizards 19:09 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has quit [Ping timeout: 245 seconds] 20:02 -!- rmwb [~rmwb@199.178.233.220.static.exetel.com.au] has joined #bitcoin-wizards 20:07 -!- rmwb [~rmwb@199.178.233.220.static.exetel.com.au] has quit [Client Quit] 20:50 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has joined #bitcoin-wizards 20:55 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has quit [Ping timeout: 246 seconds] 21:30 -!- _whitelogger [~whitelogg@uruz.whitequark.org] has quit [Remote host closed the connection] 21:31 -!- _whitelogger [~whitelogg@uruz.whitequark.org] has joined #bitcoin-wizards 21:39 -!- antanst_ [~antanst@37.6.195.202] has joined #bitcoin-wizards 21:40 -!- douglas_ [~douglas@c-73-234-93-65.hsd1.nh.comcast.net] has quit [Ping timeout: 272 seconds] 21:46 -!- douglas_ [~douglas@c-73-234-93-65.hsd1.nh.comcast.net] has joined #bitcoin-wizards 21:52 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 252 seconds] 22:00 -!- _whitelogger [~whitelogg@uruz.whitequark.org] has quit [Remote host closed the connection] 22:01 -!- _whitelogger [~whitelogg@uruz.whitequark.org] has joined #bitcoin-wizards 22:03 -!- douglas_ [~douglas@c-73-234-93-65.hsd1.nh.comcast.net] has quit [Ping timeout: 252 seconds] 22:08 -!- jb55 [~jb55@S010660e327dca171.vc.shawcable.net] has quit [Quit: WeeChat 2.1] 22:10 -!- jb55 [~jb55@S010660e327dca171.vc.shawcable.net] has joined #bitcoin-wizards 22:21 -!- wizkid057 [~wk@unaffiliated/wizkid057] has quit [Read error: Connection reset by peer] 22:27 -!- wizkid057 [~wk@unaffiliated/wizkid057] has joined #bitcoin-wizards 22:36 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has joined #bitcoin-wizards 22:40 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has quit [Ping timeout: 240 seconds] 22:42 -!- kallewoof [~quassel@fp96f94c66.tkyc515.ap.nuro.jp] has quit [Read error: Connection reset by peer] 22:44 -!- kallewoof [~quassel@fp96f94c66.tkyc515.ap.nuro.jp] has joined #bitcoin-wizards 22:48 -!- sarang [sid248211@gateway/web/irccloud.com/x-gpjsqkbmedmlrtgm] has quit [Ping timeout: 260 seconds] 22:48 -!- sarang [sid248211@gateway/web/irccloud.com/x-aopugahwmqfoxauw] has joined #bitcoin-wizards 22:48 -!- s0ph1a [sid246387@gateway/web/irccloud.com/x-artujzvshivrhrhu] has quit [Ping timeout: 260 seconds] 22:48 -!- CodeShark [sid126576@gateway/web/irccloud.com/x-qyumhrhgrrskpdss] has quit [Ping timeout: 260 seconds] 22:49 -!- CodeShark [sid126576@gateway/web/irccloud.com/x-uhwlxxqwxfjlvulv] has joined #bitcoin-wizards 22:49 -!- mariorz [sid490@gateway/web/irccloud.com/x-mkozjnncdiaoxxqu] has quit [Ping timeout: 260 seconds] 22:49 -!- s0ph1a [sid246387@gateway/web/irccloud.com/x-vewdyocbwcvzzeue] has joined #bitcoin-wizards 22:50 -!- kewde[m] [kewdematri@gateway/shell/matrix.org/x-uyhuijgtrucvjznq] has quit [Ping timeout: 260 seconds] 22:50 -!- mariorz [sid490@gateway/web/irccloud.com/x-ttpstvbhdkcnbrhs] has joined #bitcoin-wizards 22:51 -!- kewde[m] [kewdematri@gateway/shell/matrix.org/x-pfizthavqiyllarb] has joined #bitcoin-wizards 23:04 -!- rmwb [~rmwb@199.178.233.220.static.exetel.com.au] has joined #bitcoin-wizards 23:24 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has joined #bitcoin-wizards 23:29 -!- tromp [~tromp@ip-217-103-3-94.ip.prioritytelecom.net] has quit [Ping timeout: 245 seconds] 23:43 -!- kallewoof [~quassel@fp96f94c66.tkyc515.ap.nuro.jp] has quit [Read error: Connection reset by peer] 23:45 -!- kallewoof [~quassel@240d:1a:759:6000:a7b1:451a:8874:e1ac] has joined #bitcoin-wizards --- Log closed Tue Sep 04 00:00:59 2018