--- Log opened Fri Nov 09 00:00:16 2018 00:07 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 00:08 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has joined #bitcoin-core-dev 00:08 -!- ezzzy [~ezzzy@unaffiliated/ezzzy] has joined #bitcoin-core-dev 00:09 -!- ezzzy [~ezzzy@unaffiliated/ezzzy] has quit [Remote host closed the connection] 00:10 -!- ezzzy [~ezzzy@unaffiliated/ezzzy] has joined #bitcoin-core-dev 00:11 -!- leishman [~leishman@2604:5500:c225:c500:194:5c61:4bc8:8dcb] has joined #bitcoin-core-dev 00:14 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 00:15 -!- leishman [~leishman@2604:5500:c225:c500:194:5c61:4bc8:8dcb] has quit [Ping timeout: 260 seconds] 00:38 < kabaum> I noticed that a bitcoind logs to stdout and debug.log by default instead of just debug.log as was the case at least in 0.16.0. What was the rationale behind this change? 00:40 -!- profmac [~ProfMac@2001:470:1f0f:226:35c2:f5da:4882:63b1] has joined #bitcoin-core-dev 00:41 < sipa> kabaum: it does so when running in the foreground 00:41 < sipa> if you run with -daemon it doesn't 00:41 < sipa> the rationale is that if you're running things on the foreground in a terminal, you probably want to see something 00:44 < kabaum> Ok, I was just curious on why the default behavior changed from 0.16.0. 00:45 < meshcollider> it was mentioned in the 0.17 release notes btw 00:46 < kabaum> Oh, I glanced over it, but somehow it escaped me. Thanks. 00:48 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 00:49 < meshcollider> kabaum: and the original PR is 12689 if you're interested 00:50 -!- ezzzy_ [~ezzzy@unaffiliated/ezzzy] has joined #bitcoin-core-dev 00:50 -!- ezzzy__ [~ezzzy@unaffiliated/ezzzy] has joined #bitcoin-core-dev 00:53 -!- ezzzy [~ezzzy@unaffiliated/ezzzy] has quit [Ping timeout: 260 seconds] 00:54 -!- ezzzy_ [~ezzzy@unaffiliated/ezzzy] has quit [Ping timeout: 264 seconds] 00:59 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 01:01 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 01:01 -!- Krellan [~Krellan@2601:640:4000:a876:1d27:40a6:1aaf:abcc] has joined #bitcoin-core-dev 01:01 -!- Krellan [~Krellan@2601:640:4000:a876:1d27:40a6:1aaf:abcc] has quit [Remote host closed the connection] 01:02 -!- Krellan [~Krellan@2601:640:4000:a876:b586:61ab:d5e7:3068] has joined #bitcoin-core-dev 01:03 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 01:06 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 01:06 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 01:06 -!- setpill [~setpill@unaffiliated/setpill] has joined #bitcoin-core-dev 01:11 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 01:12 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 01:13 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 01:13 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 01:18 < luke-jr> https://github.com/bitcoin/bitcoin/pull/14602#pullrequestreview-173284093 01:18 < luke-jr> any ideas why I can't reply to MeshCollider? :/ 01:18 -!- kalle [~kalle@2a00:801:e0:30:8987:49c1:c531:fb11] has joined #bitcoin-core-dev 01:18 < meshcollider> wow that's very weird 01:19 < meshcollider> luke-jr: looks like you can reply on the files tab 01:19 < meshcollider> might be because I was already replying to conversation threads further up 01:22 -!- timothy [~tredaelli@redhat/timothy] has quit [Remote host closed the connection] 01:22 -!- IRC-Source_96681 [d4f7d3c8@gateway/web/cgi-irc/kiwiirc.com/ip.212.247.211.200] has joined #bitcoin-core-dev 01:23 -!- IRC-Source_96681 [d4f7d3c8@gateway/web/cgi-irc/kiwiirc.com/ip.212.247.211.200] has left #bitcoin-core-dev [] 01:24 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 01:25 -!- ezzzy__ [~ezzzy@unaffiliated/ezzzy] has quit [Remote host closed the connection] 01:26 -!- ezzzy [~ezzzy@unaffiliated/ezzzy] has joined #bitcoin-core-dev 01:30 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 246 seconds] 01:34 < kallewoof> sipa: I constantly start bitcoind with '&' to do something real quick, then ^D^C to stop it. The new change made this a bit less convenient, unfortunately, but I'll live. (regarding default printtoconsole) 01:35 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 01:40 < sipa> why the & ? 01:41 -!- Priti_Kumari_ [0e8b9b13@gateway/web/freenode/ip.14.139.155.19] has joined #bitcoin-core-dev 01:42 < sipa> kallewoof: every change breaks someone's workflow: https://xkcd.com/1172/ 01:43 < kallewoof> sipa: i want to try some command on a new instance real quick so i do e.g. mkdir x; ./bitcoind -datadir=x -regtest &; [do stuff]; ^D^C and the instance is shutdown. I could just do './bitcoin-cli -datadir=x stop' but ^D^C is .. shorter. 01:44 < kallewoof> wait, not ^D^C, fg;^C 01:44 < kallewoof> still shorter. 01:44 < sipa> killall bitcoind 01:45 < sipa> which also works with -daemon 01:45 < kallewoof> sipa: that works most of the time but i do have several servers with an actual bitcoind mainnet full node running. 01:51 < provoostenator> sipa: I'm tempted to take your "killall bitcoind" line out of context :-P 01:52 -!- _cryptosignal_me [~John@91.245.74.93] has joined #bitcoin-core-dev 01:53 -!- Zenton [~user@unaffiliated/vicenteh] has quit [Ping timeout: 252 seconds] 01:53 -!- _cryptosignal_me [~John@91.245.74.93] has quit [Client Quit] 01:53 -!- _cryptosignal_me [~John@91.245.74.93] has joined #bitcoin-core-dev 01:54 -!- _cryptosignal_me [~John@91.245.74.93] has quit [Remote host closed the connection] 01:54 -!- _cryptosignal_me [~John@91.245.74.93] has joined #bitcoin-core-dev 01:57 -!- Priti_Kumari_ [0e8b9b13@gateway/web/freenode/ip.14.139.155.19] has quit [Ping timeout: 256 seconds] 02:01 -!- rhavar [uid237883@gateway/web/irccloud.com/x-qsmcgleepgqghtvq] has quit [Quit: Connection closed for inactivity] 02:06 -!- kabaum_ [~kabaum@h-13-35.A163.priv.bahnhof.se] has joined #bitcoin-core-dev 02:08 -!- Zenton [~user@unaffiliated/vicenteh] has joined #bitcoin-core-dev 02:08 -!- kabaum_ [~kabaum@h-13-35.A163.priv.bahnhof.se] has quit [Client Quit] 02:15 < luke-jr> meshcollider: yeah, replying from the files tab worked 02:34 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 02:38 -!- drexl [~drexl@cpc130676-camd16-2-0-cust445.know.cable.virginm.net] has joined #bitcoin-core-dev 02:39 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Ping timeout: 245 seconds] 02:40 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 02:40 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 02:40 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 02:42 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 02:43 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 02:53 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 03:18 -!- wxss_ [~user@81.92.203.43] has joined #bitcoin-core-dev 03:19 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has quit [Remote host closed the connection] 03:19 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has joined #bitcoin-core-dev 03:21 -!- wxss [~user@144.48.37.62] has quit [Ping timeout: 252 seconds] 03:24 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has quit [Ping timeout: 268 seconds] 03:32 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 272 seconds] 03:36 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 03:48 -!- arubi [~ese168@gateway/tor-sasl/ese168] has quit [Remote host closed the connection] 03:49 -!- arubi [~ese168@gateway/tor-sasl/ese168] has joined #bitcoin-core-dev 04:08 -!- rex4539 [~rex4539@ppp-2-84-165-183.home.otenet.gr] has quit [Quit: rex4539] 04:21 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 04:22 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 04:24 -!- ken2812221 [~ken281222@110.50.135.219] has joined #bitcoin-core-dev 04:29 -!- bitconner [~conner@45.124.203.93] has joined #bitcoin-core-dev 04:32 -!- leishman [~leishman@2604:5500:c225:c500:194:5c61:4bc8:8dcb] has joined #bitcoin-core-dev 04:34 -!- sipa [~pw@gateway/tor-sasl/sipa1024] has quit [Remote host closed the connection] 04:34 -!- sipa [~pw@gateway/tor-sasl/sipa1024] has joined #bitcoin-core-dev 04:36 -!- leishman [~leishman@2604:5500:c225:c500:194:5c61:4bc8:8dcb] has quit [Ping timeout: 250 seconds] 04:52 -!- atroxes [~atroxes@unaffiliated/atroxes] has quit [Quit: bye] 04:53 -!- atroxes [~atroxes@unaffiliated/atroxes] has joined #bitcoin-core-dev 04:55 -!- JackH [~laptop@62.232.170.181] has joined #bitcoin-core-dev 05:11 -!- leishman [~leishman@2604:5500:c225:c500:280b:2c72:ea20:6f9e] has joined #bitcoin-core-dev 05:16 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 05:16 -!- leishman [~leishman@2604:5500:c225:c500:280b:2c72:ea20:6f9e] has quit [Ping timeout: 264 seconds] 05:17 -!- rex4539 [~rex4539@ppp-2-84-165-183.home.otenet.gr] has joined #bitcoin-core-dev 05:30 -!- shesek [~shesek@unaffiliated/shesek] has quit [Ping timeout: 264 seconds] 05:42 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 05:53 < esotericnonsense> kallewoof: do it the other way around? 05:53 < esotericnonsense> e.g. make bitcoind the foreground instance 05:58 -!- bralyclow [~bralyclow@195.242.213.119] has joined #bitcoin-core-dev 06:01 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 06:01 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 06:15 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has joined #bitcoin-core-dev 06:26 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-zmpyrakemogagmpk] has joined #bitcoin-core-dev 06:26 < bitcoin-git> [bitcoin] ken2812221 opened pull request #14698: build: Add bitcoin-tx.exe into Windows installer (master...win-bitcoin-tx) https://github.com/bitcoin/bitcoin/pull/14698 06:26 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-zmpyrakemogagmpk] has left #bitcoin-core-dev [] 06:33 -!- bralyclow [~bralyclow@195.242.213.119] has quit [Remote host closed the connection] 07:04 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-feffnbkdfgqpcxvm] has joined #bitcoin-core-dev 07:04 < bitcoin-git> [bitcoin] MarcoFalke pushed 6 new commits to master: https://github.com/bitcoin/bitcoin/compare/e70a19e7132d...cbf00939b5e8 07:04 < bitcoin-git> bitcoin/master 7e2e62c Russell Yanofsky: Add skeleton chain and client classes... 07:04 < bitcoin-git> bitcoin/master 8db11dd Russell Yanofsky: Pass chain and client variables where needed... 07:04 < bitcoin-git> bitcoin/master ea961c3 Russell Yanofsky: Remove direct node->wallet calls in init.cpp... 07:04 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-feffnbkdfgqpcxvm] has left #bitcoin-core-dev [] 07:10 -!- bralyclow [~bralyclow@195.242.213.119] has joined #bitcoin-core-dev 07:15 -!- bitconner [~conner@45.124.203.93] has quit [Ping timeout: 260 seconds] 07:19 -!- bralyclow [~bralyclow@195.242.213.119] has quit [Remote host closed the connection] 07:22 < MarcoFalke> meshcollider: Yeah, sorry that multiple comments thing looks like a bug, I hope it only was this pull request that got spammed. 07:25 < instagibbs> i could swear --enable-debug is way more useless than it used to be for gdb purposes (grumble grumble manually sets debug level) 07:26 < MarcoFalke> instagibbs: std::cout works with any debug level ;) 07:28 -!- CodeBlue1776 [~CodeBlue1@107-215-134-60.lightspeed.cicril.sbcglobal.net] has quit [Read error: Connection reset by peer] 07:28 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 07:28 -!- CodeBlue1776 [~CodeBlue1@107-215-134-60.lightspeed.cicril.sbcglobal.net] has joined #bitcoin-core-dev 07:29 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 07:39 -!- leishman [~leishman@2604:5500:c225:c500:cd12:4c79:54ce:4d34] has joined #bitcoin-core-dev 07:42 -!- _cryptodesktop_i [~John@91.245.74.93] has joined #bitcoin-core-dev 07:43 -!- _cryptosignal_me [~John@91.245.74.93] has quit [Read error: Connection reset by peer] 07:44 -!- leishman [~leishman@2604:5500:c225:c500:cd12:4c79:54ce:4d34] has quit [Ping timeout: 250 seconds] 07:46 -!- leishman [~leishman@209.37.114.32] has joined #bitcoin-core-dev 07:47 -!- zib [zib@slick.hkt0.keff.org] has joined #bitcoin-core-dev 07:47 -!- nodweber [~nodweber@unaffiliated/nodweber] has quit [Ping timeout: 240 seconds] 07:48 -!- _cryptodesktop_i [~John@91.245.74.93] has quit [Ping timeout: 246 seconds] 07:48 -!- JackH [~laptop@62.232.170.181] has quit [Ping timeout: 240 seconds] 07:48 -!- nodweber [~nodweber@unaffiliated/nodweber] has joined #bitcoin-core-dev 07:50 -!- leishman [~leishman@209.37.114.32] has quit [Ping timeout: 246 seconds] 07:59 -!- JackH [~laptop@62.232.170.181] has joined #bitcoin-core-dev 08:04 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 08:05 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 08:11 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 08:11 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 08:12 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 08:12 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 08:12 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 08:12 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 08:16 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 08:16 -!- setpill [~setpill@unaffiliated/setpill] has quit [Quit: o/] 08:21 -!- leishman [~leishman@50.237.29.22] has quit [Ping timeout: 268 seconds] 08:22 -!- ezzzy_ [~ezzzy@unaffiliated/ezzzy] has joined #bitcoin-core-dev 08:23 -!- rh0nj [~rh0nj@136.243.139.96] has quit [Remote host closed the connection] 08:25 -!- rh0nj [~rh0nj@136.243.139.96] has joined #bitcoin-core-dev 08:25 -!- ezzzy [~ezzzy@unaffiliated/ezzzy] has quit [Ping timeout: 252 seconds] 08:25 -!- drexl_ [~drexl@94.242.228.171] has joined #bitcoin-core-dev 08:26 -!- ezzzy_ [~ezzzy@unaffiliated/ezzzy] has quit [Ping timeout: 252 seconds] 08:28 -!- drexl [~drexl@cpc130676-camd16-2-0-cust445.know.cable.virginm.net] has quit [Ping timeout: 252 seconds] 08:38 < jnewbery> MarcoFalke wumpus: #14441 may be ready for merge 08:38 < gribble> https://github.com/bitcoin/bitcoin/issues/14441 | [wallet] Backport(0.17): Restore ability to list incoming transactions by label by jnewbery · Pull Request #14441 · bitcoin/bitcoin · GitHub 08:39 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 08:55 -!- morcos [~morcos@gateway/tor-sasl/morcos] has quit [Ping timeout: 256 seconds] 08:57 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 08:57 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 09:01 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 09:01 -!- morcos [~morcos@gateway/tor-sasl/morcos] has joined #bitcoin-core-dev 09:01 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 09:02 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has joined #bitcoin-core-dev 09:04 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 09:04 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 09:04 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 09:04 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 09:11 -!- bitconner [~conner@45.124.203.93] has joined #bitcoin-core-dev 09:12 -!- mistergold [~mistergol@77.243.19.253] has joined #bitcoin-core-dev 09:13 -!- JackH [~laptop@62.232.170.181] has quit [Ping timeout: 260 seconds] 09:15 -!- bitconner [~conner@45.124.203.93] has quit [Ping timeout: 245 seconds] 09:16 -!- morcos [~morcos@gateway/tor-sasl/morcos] has quit [Ping timeout: 256 seconds] 09:22 -!- morcos [~morcos@gateway/tor-sasl/morcos] has joined #bitcoin-core-dev 09:31 -!- shinohai [btcinfo@gateway/shell/xshellz/x-bxirtqkltqbmpuwm] has quit [Remote host closed the connection] 09:33 -!- timothy [~tredaelli@redhat/timothy] has quit [Quit: Konversation terminated!] 09:53 < MarcoFalke> I forgot to nominate #14530 for high priority yesterday. Going to put it in now. 09:53 < gribble> https://github.com/bitcoin/bitcoin/issues/14530 | Use RPCHelpMan to generate RPC doc strings by MarcoFalke · Pull Request #14530 · bitcoin/bitcoin · GitHub 09:54 -!- JackH [~laptop@host86-182-8-23.range86-182.btcentralplus.com] has joined #bitcoin-core-dev 10:01 -!- timothy [~tredaelli@redhat/timothy] has joined #bitcoin-core-dev 10:01 -!- timothy [~tredaelli@redhat/timothy] has quit [Client Quit] 10:05 -!- jarthur [~jarthur@207.114.244.5] has joined #bitcoin-core-dev 10:12 -!- ezzzy [~ezzzy@unaffiliated/ezzzy] has joined #bitcoin-core-dev 10:17 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: No route to host] 10:23 -!- ExtraCrispy [~ExtraCris@gateway/tor-sasl/extracrispy] has joined #bitcoin-core-dev 10:23 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 10:23 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 10:23 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 10:28 -!- jungly [~quassel@host97-200-static.8-79-b.business.telecomitalia.it] has quit [Remote host closed the connection] 10:30 -!- TheFuzzStone [~user@194.99.105.76] has joined #bitcoin-core-dev 10:36 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 10:37 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 10:39 -!- owowo [~ovovo@unaffiliated/ovovo] has quit [Ping timeout: 264 seconds] 10:46 -!- TheFuzzStone [~user@194.99.105.76] has quit [Quit: Konversation terminated!] 10:49 -!- ken2812221 [~ken281222@110.50.135.219] has quit [Read error: Connection reset by peer] 10:50 -!- TheFuzzStone [~user@194.99.105.76] has joined #bitcoin-core-dev 10:51 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 10:52 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 10:52 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 10:53 -!- Krellan [~Krellan@2601:640:4000:a876:b586:61ab:d5e7:3068] has quit [Ping timeout: 252 seconds] 10:53 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 10:56 -!- drexl_ is now known as drexl 11:04 -!- ezzzy [~ezzzy@unaffiliated/ezzzy] has quit [Remote host closed the connection] 11:06 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 11:12 -!- TheFuzzStone [~user@194.99.105.76] has quit [Quit: Konversation terminated!] 11:12 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has quit [Remote host closed the connection] 11:16 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 11:17 -!- grafcaps_ [~haroldbr@75.112.211.230] has joined #bitcoin-core-dev 11:19 -!- riemann [~riemann@217.96.163.136.ipv4.supernova.orange.pl] has joined #bitcoin-core-dev 11:19 -!- grafcaps [~haroldbr@75.112.211.230] has quit [Ping timeout: 268 seconds] 11:23 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 11:25 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 11:26 -!- grafcaps_ [~haroldbr@75.112.211.230] has quit [Ping timeout: 276 seconds] 11:30 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 11:32 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 11:32 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 11:32 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 11:34 -!- TheFuzzStone [~user@95.174.65.3] has joined #bitcoin-core-dev 11:41 -!- Zenton [~user@unaffiliated/vicenteh] has quit [Ping timeout: 252 seconds] 11:44 -!- Zenton [~user@unaffiliated/vicenteh] has joined #bitcoin-core-dev 11:49 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 11:49 -!- TheFuzzStone [~user@95.174.65.3] has quit [Quit: Konversation terminated!] 11:49 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 11:49 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 11:49 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 11:51 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Read error: Connection reset by peer] 11:52 -!- tryphe [~tryphe@unaffiliated/tryphe] has joined #bitcoin-core-dev 11:52 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 11:53 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 11:55 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 11:55 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 11:59 -!- tryphe [~tryphe@unaffiliated/tryphe] has quit [Ping timeout: 246 seconds] 12:00 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 12:00 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 12:04 -!- leishman [~leishman@50.237.29.22] has quit [Ping timeout: 246 seconds] 12:13 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has joined #bitcoin-core-dev 12:14 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has quit [Remote host closed the connection] 12:14 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has joined #bitcoin-core-dev 12:16 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has quit [Remote host closed the connection] 12:17 -!- grafcaps [~haroldbr@047-227-079-209.res.spectrum.com] has joined #bitcoin-core-dev 12:21 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has joined #bitcoin-core-dev 12:35 -!- rockhouse [~rockhouse@unaffiliated/rockhouse] has quit [Quit: Leaving ... but you never know maybe I come back!] 12:35 -!- victorSN [~victorSN@unaffiliated/victorsn] has quit [Quit: Leaving ... but you never know maybe I come back!] 12:36 -!- leishman [~leishman@50.237.113.98] has joined #bitcoin-core-dev 12:41 -!- leishman [~leishman@50.237.113.98] has quit [Ping timeout: 268 seconds] 12:42 -!- rockhouse [~rockhouse@unaffiliated/rockhouse] has joined #bitcoin-core-dev 12:42 -!- victorSN [~victorSN@unaffiliated/victorsn] has joined #bitcoin-core-dev 12:46 -!- grafcaps [~haroldbr@047-227-079-209.res.spectrum.com] has quit [Ping timeout: 272 seconds] 12:46 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 12:51 -!- leishman [~leishman@50.237.29.22] has quit [Ping timeout: 246 seconds] 12:53 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-pavafsepbbqenpus] has joined #bitcoin-core-dev 12:53 < bitcoin-git> [bitcoin] MarcoFalke opened pull request #14700: qa: Avoid race in p2p_invalid_block by waiting for the block request (master...Mf1811-qaPassOnCentOs) https://github.com/bitcoin/bitcoin/pull/14700 12:53 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-pavafsepbbqenpus] has left #bitcoin-core-dev [] 12:55 -!- laurentmt [~Thunderbi@77.247.178.186] has joined #bitcoin-core-dev 13:02 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 13:03 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 13:03 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 13:03 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 13:04 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 13:07 -!- kabaum [~kabaum@h-13-35.A163.priv.bahnhof.se] has quit [Quit: Leaving] 13:08 -!- leishman [~leishman@50.237.29.22] has quit [Ping timeout: 244 seconds] 13:21 -!- mistergold [~mistergol@77.243.19.253] has quit [Read error: Connection reset by peer] 13:22 -!- laurentmt [~Thunderbi@77.247.178.186] has quit [Quit: laurentmt] 13:29 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 13:31 -!- drexl_ [~drexl@cpc130676-camd16-2-0-cust445.know.cable.virginm.net] has joined #bitcoin-core-dev 13:35 -!- drexl [~drexl@94.242.228.171] has quit [Ping timeout: 244 seconds] 13:35 -!- drexl_ is now known as drexl 13:45 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 13:48 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 13:55 -!- grafcaps [~haroldbr@75.112.211.230] has joined #bitcoin-core-dev 13:55 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 13:56 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 13:57 -!- wxss_ [~user@81.92.203.43] has quit [Quit: leaving] 14:07 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 14:07 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 14:09 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 14:10 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 14:10 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 14:10 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 14:12 -!- leishman [~leishman@50.237.29.22] has quit [Ping timeout: 240 seconds] 14:13 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 14:25 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 14:29 -!- Guyver2 [~Guyver@guyver2.xs4all.nl] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 14:30 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 14:31 -!- jarthur [~jarthur@207.114.244.5] has quit [] 14:35 -!- promag_ [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 14:37 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 252 seconds] 14:37 -!- booyah_ [~bb@193.25.1.157] has quit [Read error: Connection reset by peer] 14:38 -!- booyah_ [~bb@193.25.1.157] has joined #bitcoin-core-dev 14:42 -!- hbj [b539faca@gateway/web/freenode/ip.181.57.250.202] has joined #bitcoin-core-dev 14:42 < hbj> hi 14:42 -!- hbj [b539faca@gateway/web/freenode/ip.181.57.250.202] has quit [Client Quit] 14:45 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 14:47 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 14:47 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 14:47 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 14:57 -!- phwalkr [~phwalkr@192.32.61.94.rev.vodafone.pt] has quit [Quit: Leaving...] 15:04 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 15:05 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 15:38 -!- rh0nj [~rh0nj@136.243.139.96] has quit [Remote host closed the connection] 15:39 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 15:39 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 15:39 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 15:39 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 15:47 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 15:47 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 15:49 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 15:49 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 15:59 -!- justan0theruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 252 seconds] 15:59 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: No route to host] 16:02 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 16:02 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 16:02 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 16:04 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 16:07 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 16:09 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 16:12 -!- leishman [~leishman@50.237.29.22] has quit [Ping timeout: 272 seconds] 16:16 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 16:16 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has quit [Ping timeout: 246 seconds] 16:17 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 16:17 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 16:18 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 16:19 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 16:21 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 16:21 -!- leishman [~leishman@50.237.29.22] has quit [Ping timeout: 252 seconds] 16:21 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 16:21 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 16:21 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 16:28 -!- Ga1aCt1Cz00__ [~Ga1aCt1Cz@p2003005F6E1F7C51710AE79902082B78.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 16:28 -!- bitconner [~conner@45.124.203.93] has joined #bitcoin-core-dev 16:30 -!- promag_ [~promag@bl22-247-244.dsl.telepac.pt] has quit [Ping timeout: 244 seconds] 16:30 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has joined #bitcoin-core-dev 16:31 -!- Ga1aCt1Cz00_ [~Ga1aCt1Cz@p2003005F6E1F7C60398BE87E881D1A3E.dip0.t-ipconnect.de] has quit [Ping timeout: 264 seconds] 16:32 -!- bitconner [~conner@45.124.203.93] has quit [Ping timeout: 240 seconds] 16:37 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: No route to host] 16:37 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 16:42 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: No route to host] 16:44 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 16:45 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 16:45 -!- spinza [~spin@155.93.246.187] has quit [Quit: Coyote finally caught up with me...] 16:52 -!- justanotheruser [~justanoth@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 16:53 -!- promag [~promag@bl22-247-244.dsl.telepac.pt] has quit [Remote host closed the connection] 16:55 -!- spinza [~spin@155.93.246.187] has joined #bitcoin-core-dev 17:03 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 17:04 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 17:09 -!- leishman [~leishman@50.237.29.22] has quit [Remote host closed the connection] 17:09 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 17:13 -!- leishman [~leishman@50.237.29.22] has quit [Ping timeout: 245 seconds] 17:20 -!- drexl [~drexl@cpc130676-camd16-2-0-cust445.know.cable.virginm.net] has quit [Quit: drexl] 17:26 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 17:27 -!- blah__ [45ff869d@gateway/web/freenode/ip.69.255.134.157] has joined #bitcoin-core-dev 17:27 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 17:28 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 17:29 < blah__> can anyone point me to some info on possibly updating source code of an old sha256 crypto 17:30 -!- leishman [~leishman@50.237.29.22] has quit [Ping timeout: 244 seconds] 17:30 -!- IGHOR [~quassel@93.178.216.72] has quit [Quit: http://quassel-irc.org ? ??????????? ?????????. ????-??.] 17:31 < sipa> blah__: ##altcoin-dev 17:31 < blah__> thanks buddy 17:32 < blah__> hey can anyone point me to some info for updating source code to an old sha256 coin? 17:32 < achow101> blah__: wrong channel 17:33 < blah__> oh shit i donked 17:34 < blah__> too much of the pots apparently 17:34 -!- owowo [~ovovo@unaffiliated/ovovo] has joined #bitcoin-core-dev 17:35 -!- IGHOR [~quassel@93.178.216.72] has joined #bitcoin-core-dev 17:36 < blah__> i cant post in the altcoin thread 17:36 < blah__> thanks guys 17:40 -!- blah__ [45ff869d@gateway/web/freenode/ip.69.255.134.157] has quit [Quit: Page closed] 17:40 -!- booyah_ is now known as booyah 17:42 -!- leishman [~leishman@50.237.29.22] has joined #bitcoin-core-dev 17:47 -!- leishman [~leishman@50.237.29.22] has quit [Ping timeout: 268 seconds] 17:51 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 17:52 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 18:00 -!- _cryptosignal_me [~John@91.245.74.93] has joined #bitcoin-core-dev 18:06 -!- fanquake [~fanquake@unaffiliated/fanquake] has quit [] 18:13 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 18:14 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 18:14 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 18:14 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 18:24 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 18:26 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 18:26 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 18:26 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 18:33 -!- _cryptosignal_me [~John@91.245.74.93] has quit [Ping timeout: 244 seconds] 18:42 -!- rh0nj [~rh0nj@136.243.139.96] has joined #bitcoin-core-dev 18:46 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 18:46 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 18:46 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 18:46 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 18:55 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 18:56 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 18:56 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 18:56 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 19:10 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 19:11 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 19:17 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 19:17 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 19:17 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 19:17 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 19:37 -!- instagibbs [~instagibb@pool-100-15-135-248.washdc.fios.verizon.net] has quit [Ping timeout: 268 seconds] 19:42 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 19:43 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 19:43 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-avpkpsvadjtbxzbd] has joined #bitcoin-core-dev 19:43 < bitcoin-git> [bitcoin] sipa pushed 8 new commits to master: https://github.com/bitcoin/bitcoin/compare/cbf00939b5e8...b30c62d4b954 19:43 < bitcoin-git> bitcoin/master fe5d22b Glenn Willen: More concise conversion of CDataStream to string... 19:43 < bitcoin-git> bitcoin/master 4f3f5cb Glenn Willen: Remove redundant txConst parameter to FillPSBT 19:43 < bitcoin-git> bitcoin/master 65166d4 Glenn Willen: New PartiallySignedTransaction constructor from CTransction... 19:43 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-avpkpsvadjtbxzbd] has left #bitcoin-core-dev [] 19:44 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-qpnfkihptdqterwv] has joined #bitcoin-core-dev 19:44 < bitcoin-git> [bitcoin] sipa closed pull request #14588: Refactor PSBT signing logic to enforce invariant and fix signing bug (master...feature-psbt-sign-fix) https://github.com/bitcoin/bitcoin/pull/14588 19:44 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-qpnfkihptdqterwv] has left #bitcoin-core-dev [] 20:11 -!- AaronvanW [~AaronvanW@unaffiliated/aaronvanw] has quit [] 20:13 -!- ctrlbreak_MAD [~ctrlbreak@142.162.20.53] has joined #bitcoin-core-dev 20:14 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has quit [Remote host closed the connection] 20:14 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has joined #bitcoin-core-dev 20:14 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-krkrhcwyxuqlkfnk] has joined #bitcoin-core-dev 20:15 < bitcoin-git> [bitcoin] sipa pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/b30c62d4b954...16e3b175781c 20:15 < bitcoin-git> bitcoin/master 6b8d86d Andrew Chow: Require a public key to be retrieved when signing a P2PKH input... 20:15 < bitcoin-git> bitcoin/master 16e3b17 Pieter Wuille: Merge #14689: Require a public key to be retrieved when signing a P2PKH input... 20:15 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-krkrhcwyxuqlkfnk] has left #bitcoin-core-dev [] 20:15 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-vgykndypyvbaizwv] has joined #bitcoin-core-dev 20:15 < bitcoin-git> [bitcoin] sipa closed pull request #14689: Require a public key to be retrieved when signing a P2PKH input (master...fix-pkh-pubkeys) https://github.com/bitcoin/bitcoin/pull/14689 20:15 -!- bitcoin-git [bitcoin-gi@gateway/service/github.com/x-vgykndypyvbaizwv] has left #bitcoin-core-dev [] 20:16 -!- ctrlbreak [~ctrlbreak@142.162.20.53] has quit [Ping timeout: 252 seconds] 20:34 -!- instagibbs [~instagibb@pool-100-15-135-248.washdc.fios.verizon.net] has joined #bitcoin-core-dev 20:36 -!- ken2812221 [~ken281222@110.50.135.219] has joined #bitcoin-core-dev 20:36 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 20:41 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 20:45 -!- fanquake [~fanquake@unaffiliated/fanquake] has joined #bitcoin-core-dev 20:48 -!- RiskNerd [48eaf57b@gateway/web/freenode/ip.72.234.245.123] has joined #bitcoin-core-dev 21:05 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 21:06 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 21:07 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 21:07 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 21:17 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 21:18 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 21:21 -!- leishman [~leishman@2604:5500:c225:c500:2c10:38fe:ae41:1e91] has joined #bitcoin-core-dev 21:24 -!- cubancorona [cubancoron@gateway/vpn/privateinternetaccess/cubancorona] has quit [Quit: Leaving] 21:25 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 21:26 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 21:26 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 21:26 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 21:26 -!- leishman [~leishman@2604:5500:c225:c500:2c10:38fe:ae41:1e91] has quit [Ping timeout: 252 seconds] 21:38 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 21:38 -!- lukedashjr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 21:40 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 21:41 -!- luke-jr [~luke-jr@unaffiliated/luke-jr] has quit [Ping timeout: 246 seconds] 21:43 -!- lukedashjr is now known as luke-jr 21:52 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 21:56 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 21:56 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 21:56 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 22:02 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: No route to host] 22:02 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 22:02 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 22:02 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 22:04 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 22:06 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 22:33 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 22:36 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 22:40 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 22:42 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 22:47 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 22:48 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 22:52 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 22:54 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 22:57 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 22:57 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 23:00 -!- leishman [~leishman@2604:5500:c225:c500:bd2a:7267:db5b:b14e] has joined #bitcoin-core-dev 23:01 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 23:05 -!- leishman [~leishman@2604:5500:c225:c500:bd2a:7267:db5b:b14e] has quit [Ping timeout: 250 seconds] 23:06 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 23:06 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 23:06 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 23:25 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 23:28 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 23:28 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 23:28 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 23:28 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 23:30 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 23:32 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 23:34 -!- riemann [~riemann@217.96.163.136.ipv4.supernova.orange.pl] has quit [Quit: Leaving] 23:34 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 23:34 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 23:34 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 23:51 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 23:51 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 23:52 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 23:53 -!- shesek [~shesek@185.3.147.193] has joined #bitcoin-core-dev 23:53 -!- shesek [~shesek@185.3.147.193] has quit [Changing host] 23:53 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 23:54 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 23:55 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev 23:57 -!- shesek [~shesek@unaffiliated/shesek] has quit [Read error: Connection reset by peer] 23:59 -!- shesek [~shesek@unaffiliated/shesek] has joined #bitcoin-core-dev --- Log closed Sat Nov 10 00:00:17 2018