--- Day changed Tue May 10 2016 00:06 -!- blur3d [~blur3d@d114-78-35-81.rdl805.qld.optusnet.com.au] has joined #bitcoin-core-dev 00:10 -!- gill3s [~textual@unaffiliated/gill3s] has joined #bitcoin-core-dev 00:18 < jonasschnelli> I'm impressed how bitcoin-core does perform on a 29$ computer (Pine64). Progress=0.5~ in <24h. dbcache=1500. Using a cheap/slow USB stick. 00:19 -!- BashCo_ [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 00:21 -!- BashCo_ [~BashCo@unaffiliated/bashco] has quit [Remote host closed the connection] 00:22 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 276 seconds] 00:30 -!- xiangfu [~xiangfu@49.4.170.106] has joined #bitcoin-core-dev 00:30 < btcdrak> jonasschnelli: did your Pine64 arrive already? 00:30 < jonasschnelli> Yes. Its syncing next to me. 00:30 < wumpus> jonasschnelli: nice result 00:31 < jonasschnelli> I really think this machine could allow my long-term goal: a full node in a box for ~50USD. 00:32 < jonasschnelli> Nice casing, some led for status indicator. Could come with a 128GB usb stick with the blockchain preloaded. People can refect/re-IBD if they like (led could indicate re-index) 00:32 < jonasschnelli> "your bank at home" 00:40 < wumpus> sipa: how do you measure exact cycle counts in #8020? 00:41 < wumpus> jonasschnelli: such a thing has also always been my plan, but yes up to now devices have always been too weak for that. People using bitcoind on a RPi are just practicing masochism. 00:42 < jonasschnelli> wumpus: Agree. Ordoid and Pine are capable. RPi is probably not. 00:42 * jonasschnelli is also wondering how sipa does measure the cycles... 00:43 < jonasschnelli> can you measure it with gdb by stepping single instructions? 00:43 < jonasschnelli> (on ASM level) 00:44 < wumpus> I think he uses 'performance counters' with some profiler, it's certainly possible to count instructions and cycles with linux' 'perf' for example on a larger scale but I've never been able to do so on a per-function level 00:44 < wumpus> so yes I wonder what exact software 00:46 < wumpus> try 'perf stat ls' for example 00:48 < wumpus> of course the number of cycles will be different per CPU type, even between different vendors and models 00:49 < wumpus> but still it's nice to be able to measure it that precisely 00:53 < wumpus> what is possible with perf is 'sampling' e.g. making it probe the counters a certain number of amount per second, it's possible t ocreate some nice flame graph diagrams that way where most of resources are spent: http://www.brendangregg.com/flamegraphs.html 00:54 < wumpus> there is even a 'perf top' to see what processes/functions consume most CPU cycles globally 00:58 < jonasschnelli> `perf top` is nice 00:58 < jonasschnelli> hah: 33.96% bitcoind [.] (anonymous namespace)::sha256::Transform(unsigned int*, unsigned char const*) 01:00 < wumpus> heh yes bitcoind spends a lot of time in sha256, leveldb spends a lot of time in crc32c 01:01 < wumpus> a more optimized sha256 (for example using sse intrinsics) could likely speed up things, there's so much hashing 01:02 < wumpus> this is why everyone wants the cpus with sha256 instructions to be finally released 01:02 < wumpus> which reminds me, jonasschnelli what are the extension bits in /proc/cpuinfo on your aarch64 board? 01:03 * jonasschnelli looking... 01:03 < wumpus> odroid C2 had the crc32 extension but not sha :( 01:03 < wumpus> s/had/has 01:03 < jonasschnelli> hah: Features : fp asimd aes pmull sha1 sha2 crc32 01:03 < wumpus> awesome! 01:04 < jonasschnelli> (but the pref stats above are from a different computer) 01:04 < wumpus> Features : fp asimd crc32 01:04 * jonasschnelli installing pref on the Pine64 01:04 < wumpus> I'd expected so: perf stat and friends by far work best on x86 01:05 < wumpus> performance counter support for other CPUs is stil catching up, though it sometimes works 01:05 < jonasschnelli> Would openCL be something to speed up SHA256 batch calculation? At least for desktop pcs? 01:06 < wumpus> in any case from what I understand this means you can use the vsha256hq_u32 vsha256h2q_u32 vsha256su0q_u32 vsha256su1q_u32 NEON intrinsics on that board 01:06 -!- Squidicuz [~squid@pool-173-48-102-116.bstnma.fios.verizon.net] has quit [Quit: Oh no, not again] 01:06 < wumpus> I don't know yet how to implement sha256::Transform with them, as I lost interest as it's not possible with my board, but it should be possible :-) 01:07 < jonasschnelli> Hmm... yes. This sounds after another weekend project. :) 01:07 < jonasschnelli> But free weekends are so precious and rare! 01:08 -!- kadoban [~mud@unaffiliated/kadoban] has quit [Ping timeout: 276 seconds] 01:08 < wumpus> sha256 is an inherently linear operation, I'm not sure how well itlends itself to OpenCL paralellization. Indeed maybe if you can manage to queue up a lot of different things to be SHA256'ed at once 01:08 < wumpus> same for doing secp256k1 operations in opencl 01:09 < wumpus> at the least, GPUs became a lot better with integer operations compared to the time I used it a lot, partially thanks to bitcoin mining :-) 01:09 < jonasschnelli> Yes. But the main problems is probably how to split of batches and not loose performance in syncing back these wored-down batches. 01:09 < jonasschnelli> *worked 01:10 < wumpus> yes, exactly, usually the problem is how to structure the work at a higher level 01:10 -!- xiangfu [~xiangfu@49.4.170.106] has quit [Remote host closed the connection] 01:10 < wumpus> in any case I think there is low hanging fruit in the form of better CPU implementations 01:11 < jonasschnelli> Right. And I don't expect good GPUs in most bitcoind machines. 01:12 < jonasschnelli> (mostly VPS/servers or barbones) 01:12 < wumpus> e.g. there are also some practical issues with GPUs, they tend to be even less reliable (on average) than CPUs, and prone to overheating 01:13 < wumpus> that too, who wants to use their high end gaming machine to sync the chain (except to show off how fast it can be done) 01:13 -!- arowser_ [~quassel@106.120.101.38] has quit [Ping timeout: 276 seconds] 01:14 -!- arowser [~quassel@106.120.101.38] has joined #bitcoin-core-dev 01:14 -!- fengling [~fengling@111.205.211.26] has joined #bitcoin-core-dev 01:18 -!- jannes [~jannes@178.132.211.90] has joined #bitcoin-core-dev 01:20 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 01:21 < wumpus> paper about fast sha256 implementations using SSE4.2 and AVX instructions https://www-ssl.intel.com/content/dam/www/public/us/en/documents/white-papers/sha-256-implementations-paper.pdf 01:24 -!- AaronvanW [~ewout@172pc231.sshunet.nl] has joined #bitcoin-core-dev 01:24 -!- AaronvanW [~ewout@172pc231.sshunet.nl] has quit [Changing host] 01:24 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:34 < GitHub195> [bitcoin] jonasschnelli pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/4e14afe42fdd...b33824b76cbf 01:34 < GitHub195> bitcoin/master 3902a29 Tyler Hardin: Qt: Delay user confirmation of send... 01:34 < GitHub195> bitcoin/master b33824b Jonas Schnelli: Merge #8012: Qt: Delay user confirmation of send... 01:34 < GitHub160> [bitcoin] jonasschnelli closed pull request #8012: Qt: Delay user confirmation of send (master...send-delay) https://github.com/bitcoin/bitcoin/pull/8012 01:35 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 01:36 -!- fengling [~fengling@111.205.211.26] has quit [Quit: WeeChat 1.4] 01:57 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 02:03 -!- muftop [~shitstain@50.248.81.65] has quit [Read error: Connection reset by peer] 02:03 -!- muftop [~shitstain@50.248.81.65] has joined #bitcoin-core-dev 02:08 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 02:22 < GitHub8> [bitcoin] jonasschnelli opened pull request #8035: [Wallet] Add simplest BIP32/deterministic key generation implementation (master...2016/05/simplest_hd) https://github.com/bitcoin/bitcoin/pull/8035 02:26 < GitHub24> [bitcoin] jonasschnelli closed pull request #6265: Add HD/Bip32 support (master...2015/06/wallet_bip32) https://github.com/bitcoin/bitcoin/pull/6265 02:27 < GitHub98> [bitcoin] jonasschnelli closed pull request #7273: [Wallet] Simple HD/BIP32 support (master...2016/01/hdsimple) https://github.com/bitcoin/bitcoin/pull/7273 02:28 < gmaxwell> bluematt: sipa: Another proposed implementation tweak for compactblocks: The sender can use the formula to decide the length to send. The reciever can then also use the formula, and if their mempool is too big for the number of bytes sent, it can just the top subset of the mempool. 02:30 < jonasschnelli> gmaxwell, sipa: Maybe you find time to review the "simplest" HD PR: https://github.com/bitcoin/bitcoin/pull/8035 02:30 < gmaxwell> BlueMatt: if you get sipa' implementation tweaks in, I'll get some public nodes up running it. Maybe with a little hack to continually INV top of the mempool to you every block, in order to hotstart you. (otherwise you have to run it for a day to get realistic hit rates) 02:30 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 02:30 < gmaxwell> jonasschnelli: awesome. 02:30 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has quit [Read error: Connection reset by peer] 02:31 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has joined #bitcoin-core-dev 02:31 < jonasschnelli> Breaking up the CHDChain data-model would save another 10-20 lines. But would lead to a ugly design. 02:40 -!- erasmospunk [~erasmospu@151.41.35.121] has joined #bitcoin-core-dev 02:52 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 02:53 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 02:53 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 02:56 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 02:59 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:00 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:01 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:02 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:03 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:04 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:05 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:06 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:07 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:08 < GitHub152> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/b33824b76cbf...5767e80dda7a 03:08 < GitHub152> bitcoin/master db18ab2 Pavel Janík: Reenable multithread scheduler test. 03:08 < GitHub152> bitcoin/master 166e4b0 Pavel Janík: Notify other serviceQueue thread we are finished to prevent deadlocks. 03:08 < GitHub152> bitcoin/master 5767e80 Wladimir J. van der Laan: Merge #8016: Fix multithread CScheduler and reenable test... 03:09 < GitHub32> [bitcoin] laanwj closed pull request #8016: Fix multithread CScheduler and reenable test (master...20160506_multithread_CScheduler) https://github.com/bitcoin/bitcoin/pull/8016 03:09 < GitHub142> [bitcoin] laanwj closed pull request #8005: Add a comment indicating that the btc devs don't want a warning fixed (master...note-that-unused-function-compiler-warning-should-not-be-fixed) https://github.com/bitcoin/bitcoin/pull/8005 03:09 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 265 seconds] 03:12 -!- erasmospunk [~erasmospu@151.41.35.121] has quit [Ping timeout: 246 seconds] 03:13 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:14 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:15 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:16 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:17 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:18 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:19 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:20 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:21 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:22 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:23 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:23 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:28 -!- paveljanik [~paveljani@79-98-72-216.sys-data.com] has joined #bitcoin-core-dev 03:28 -!- paveljanik [~paveljani@79-98-72-216.sys-data.com] has quit [Changing host] 03:28 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has joined #bitcoin-core-dev 03:30 < paveljanik> jonasschnelli, great work on the HD wallet! 03:31 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:33 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:35 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:35 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:35 -!- gill3s [~textual@unaffiliated/gill3s] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 03:37 -!- erasmospunk [~erasmospu@151.68.157.42] has joined #bitcoin-core-dev 03:37 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 03:38 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 03:44 < GitHub184> [bitcoin] laanwj pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/5767e80dda7a...f7a21dae5dbf 03:44 < GitHub184> bitcoin/master addb9d2 instagibbs: Remove state arg from ReconsiderBlock 03:44 < GitHub184> bitcoin/master 657e07e instagibbs: Rename ReconsiderBlock func to reflect real behavior 03:44 < GitHub184> bitcoin/master f7a21da Wladimir J. van der Laan: Merge #8019: Remove state arg from ReconsiderBlock, rename to ResetBlockFailureFlags... 03:44 < GitHub167> [bitcoin] laanwj closed pull request #8019: Remove state arg from ReconsiderBlock, rename to ResetBlockFailureFlags (master...reblarg) https://github.com/bitcoin/bitcoin/pull/8019 03:49 -!- erasmospunk [~erasmospu@151.68.157.42] has quit [Ping timeout: 240 seconds] 03:50 -!- G1lius [~stefangil@109.201.137.10] has joined #bitcoin-core-dev 03:57 < GitHub126> [bitcoin] laanwj opened pull request #8036: init: Move berkeleydb version reporting to wallet (master...2016_05_berkeleydb_report_in_wallet) https://github.com/bitcoin/bitcoin/pull/8036 04:04 -!- erasmospunk [~erasmospu@151.41.110.106] has joined #bitcoin-core-dev 04:21 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-klxmkujwcbzelawj] has joined #bitcoin-core-dev 04:25 -!- cryptapus_ [~cyptapus@87.254.202.158] has joined #bitcoin-core-dev 04:25 -!- cryptapus_ [~cyptapus@87.254.202.158] has quit [Changing host] 04:25 -!- cryptapus_ [~cyptapus@unaffiliated/cryptapus] has joined #bitcoin-core-dev 04:30 -!- cryptapus_ is now known as cryptapus 04:30 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 04:38 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 04:38 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 04:40 -!- gill3s [~textual@unaffiliated/gill3s] has joined #bitcoin-core-dev 04:41 -!- gill3s [~textual@unaffiliated/gill3s] has quit [Client Quit] 04:41 -!- gill3s [~textual@unaffiliated/gill3s] has joined #bitcoin-core-dev 04:43 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 04:43 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 04:45 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 04:47 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 04:48 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 04:49 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 04:50 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 04:51 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 04:54 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 04:54 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 04:55 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 04:55 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 04:57 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 04:58 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Read error: Connection reset by peer] 05:07 -!- erasmospunk [~erasmospu@151.41.110.106] has quit [Remote host closed the connection] 05:21 -!- abritoid [~abritoid@46.16.193.99] has joined #bitcoin-core-dev 05:23 -!- gavinand1esen [~gavin@unaffiliated/gavinandresen] has quit [Ping timeout: 276 seconds] 05:23 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has quit [Quit: Leaving] 05:24 -!- gavinandresen [~gavin@66.172.11.36] has joined #bitcoin-core-dev 05:24 -!- gavinandresen is now known as Guest30834 05:25 -!- arowser [~quassel@106.120.101.38] has quit [Ping timeout: 260 seconds] 05:26 -!- arowser [~quassel@106.120.101.38] has joined #bitcoin-core-dev 05:29 -!- jtimon [~quassel@65.28.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 05:38 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 05:47 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 250 seconds] 05:48 -!- abritoid [~abritoid@46.16.193.99] has quit [Quit: O.o] 05:51 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 05:59 -!- murch [~murch@p4FE3A0C2.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 06:02 -!- alpalp [~allen@unaffiliated/alpalp] has joined #bitcoin-core-dev 06:06 -!- alpalp [~allen@unaffiliated/alpalp] has quit [Ping timeout: 265 seconds] 06:16 -!- G1lius [~stefangil@109.201.137.10] has quit [Read error: Connection reset by peer] 06:16 < GitHub58> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/f7a21dae5dbf...41138f914d16 06:16 < GitHub58> bitcoin/master 3e2c946 Wladimir J. van der Laan: init: Move berkeleydb version reporting to wallet... 06:16 < GitHub58> bitcoin/master 41138f9 Wladimir J. van der Laan: Merge #8036: init: Move berkeleydb version reporting to wallet... 06:16 < GitHub11> [bitcoin] laanwj closed pull request #8036: init: Move berkeleydb version reporting to wallet (master...2016_05_berkeleydb_report_in_wallet) https://github.com/bitcoin/bitcoin/pull/8036 06:17 -!- G1lius [~stefangil@109.201.137.10] has joined #bitcoin-core-dev 06:18 -!- blur3d [~blur3d@d114-78-35-81.rdl805.qld.optusnet.com.au] has quit [Quit: blur3d] 06:26 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 244 seconds] 06:27 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 06:28 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 06:48 -!- TomMc [~tom@unaffiliated/tommc] has joined #bitcoin-core-dev 06:52 < GitHub74> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/41138f914d16...373b50debaa9 06:52 < GitHub74> bitcoin/master 0fd5997 Patrick Strateman: Fix insanity of CWalletDB::WriteTx and CWalletTx::WriteToDisk 06:52 < GitHub74> bitcoin/master 373b50d Wladimir J. van der Laan: Merge #8028: Fix insanity of CWalletDB::WriteTx and CWalletTx::WriteToDisk... 06:52 < GitHub54> [bitcoin] laanwj closed pull request #8028: Fix insanity of CWalletDB::WriteTx and CWalletTx::WriteToDisk (master...2016-05-09-cwalletdb-writetx) https://github.com/bitcoin/bitcoin/pull/8028 06:52 -!- Giszmo [~leo@pc-122-14-46-190.cm.vtr.net] has joined #bitcoin-core-dev 07:07 -!- arowser [~quassel@106.120.101.38] has quit [Quit: No Ping reply in 180 seconds.] 07:08 -!- arowser [~quassel@106.120.101.38] has joined #bitcoin-core-dev 07:41 -!- Michail1 [~michail@michail.com] has quit [Ping timeout: 244 seconds] 07:41 < BlueMatt> gmaxwell/sipa: yea, thinking about it I'm really not a fan of the sender calculating the size in compact blocks...it is really awkward that the sender is picking a value based on their own mempool size assuming the receiver has the same size 07:41 -!- earlest [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 07:42 < gmaxwell> BlueMatt: it's harmless, because the reciever can artifically reduce their effective mempool size if the sender picked too small a value. (and if the sender picked too large, thats harmless too, just a bit more bandwidth) 07:43 < BlueMatt> not if, eg, the sender just was brought online, so the mempool isnt the top of the peers mempool, but a different random set 07:43 < gmaxwell> what does that have to do with anything? 07:44 < gmaxwell> if so, they may assume the peer's mempool is smaller than it is, send only 5 bytes when they should have sent 6 and the peer will end up having to gettxn as if they only used the top 10000 txn in their mempool. 07:44 -!- bysherper [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 07:45 < BlueMatt> gmaxwell: hmm? if the sending peer just came online, then their mempool is small, but random, not the "top X" txn. 07:45 < gmaxwell> the content of the sending peers mempool isn't important. 07:45 < BlueMatt> no, but its size matters 07:45 < BlueMatt> oh, i see your point though 07:46 < gmaxwell> right. 07:46 < gmaxwell> it just means they may go to small, but if they do, worse that happens is the reciever needs to gettxn as if the recievers mempool was also smaller. 07:47 < gmaxwell> (though could still use the extra txn in an attempted gettxn-less reconstruction) 07:47 -!- Michail1 [~michail@michail.com] has joined #bitcoin-core-dev 07:47 < gmaxwell> e.g. use whole pool? succest? if so top. Else remove everything except the top X (based on size), and gettxn. 07:47 < gmaxwell> er success* 07:48 < BlueMatt> still, makes me uncomfortable for the sender to pick a shortid size based on their mempool size when what actually matters is the receivers mempool, or, really, the miners mempool 07:48 < BlueMatt> like, this falls apart the second a miner picks a tx not from the top of the fee-sorted pool 07:48 < BlueMatt> or with cpfp or something 07:48 < gmaxwell> what matters is pretty much exclusively the recievers mempool. the driving factor in the fp rate is how many txn will be compared against the short IDs. 07:49 < BlueMatt> yesyes, but you're suggesting using the "top X" from your mempool 07:49 < gmaxwell> it doesn't fall appart, just more approximate. in reality though you're talking about a corner case. 5 bytes is good for mempools significantly larger than we have typically. 07:50 < BlueMatt> hmm...lemme get more coffee and think, I may just be being tired 07:50 < gmaxwell> just means that you're going to gettxn a few extra txn when the sender goes too small; this could be further improved by making the sender do the table amount +1. 07:53 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 250 seconds] 07:58 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Quit: laurentmt] 08:01 -!- lecusemble [~lecusembl@104.233.76.133] has quit [Ping timeout: 276 seconds] 08:11 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 08:24 -!- bysherper [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 08:27 -!- earlest [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 08:28 -!- Amnez777 [~Amnez777@37.157.216.141] has quit [Ping timeout: 246 seconds] 08:33 -!- earlest [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 08:35 -!- ebfull [~sean@73.34.119.0] has joined #bitcoin-core-dev 08:36 -!- bysherper [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 08:47 -!- bysherper [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 08:49 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 08:50 -!- earlest [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 08:56 -!- earlest [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 08:56 < GitHub72> [bitcoin] MarcoFalke opened pull request #8038: [qa, doc] Various minor fixes (master...Mf1605-trivial12) https://github.com/bitcoin/bitcoin/pull/8038 08:58 -!- davec [~davec@cpe-24-243-251-52.hot.res.rr.com] has quit [Read error: Connection reset by peer] 08:59 -!- bysherper [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 09:00 < Chris_Stewart_5> Hmm, are the arguments for OP_PUSHDATA parsed as unsigned numbers? 09:01 -!- wasi [~wasi@25.22.3.213.static.wline.lns.sme.cust.swisscom.ch] has quit [Quit: Leaving] 09:01 -!- zooko [~user@2601:281:8000:8387:341e:308b:baa4:35e0] has joined #bitcoin-core-dev 09:02 -!- paveljanik [~paveljani@79-98-72-216.sys-data.com] has joined #bitcoin-core-dev 09:02 -!- paveljanik [~paveljani@79-98-72-216.sys-data.com] has quit [Changing host] 09:02 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has joined #bitcoin-core-dev 09:04 -!- erasmospunk [~erasmospu@151.41.110.106] has joined #bitcoin-core-dev 09:05 -!- davec [~davec@cpe-24-243-251-52.hot.res.rr.com] has joined #bitcoin-core-dev 09:12 -!- MarcoFalke [8af602ae@gateway/web/cgi-irc/kiwiirc.com/ip.138.246.2.174] has joined #bitcoin-core-dev 09:12 < sdaftuar> MarcoFalke: hi -- i was pretty sure the bip9-softforks test would be failing for everyone, but maybe it's a local problem 09:13 -!- Squidicuz [~squid@pool-173-48-102-116.bstnma.fios.verizon.net] has joined #bitcoin-core-dev 09:13 < MarcoFalke> Is it failing when you try bitcoin/master? 09:14 < sdaftuar> the failure is only because the script is outputting to stderr, which is introduced in that pull 09:15 < sdaftuar> so i take it you don't get this error when you run locally? "BDB3028 /tmp/testly60vwvd/blocks.db: unable to flush: No such file or directory 09:15 < sdaftuar> " 09:15 < MarcoFalke> nope 09:15 < MarcoFalke> This happens after the nodes are shut down/ 09:16 < sdaftuar> yeah at the end of the test 09:16 < sdaftuar> i think it's because the test is deleting the directory that contains the file used by the blockstore 09:16 -!- bysherper [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 09:16 < sdaftuar> (it does this over and over, sort of a layer violation) 09:17 < sdaftuar> but i don't know why this would only be affecting me and not you... 09:17 < sdaftuar> which python do you use? 09:18 < MarcoFalke> Shouldn't be the python version 09:18 < MarcoFalke> It fails for you on py2 and py3 09:18 < MarcoFalke> which bdb are you running? 09:18 < sdaftuar> hm, not sure how to determine that? 09:19 -!- earlest [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 09:21 < MarcoFalke> Should be the default version if you don't pass opts to ./configure 09:24 -!- droark [~droark@c-24-22-36-12.hsd1.or.comcast.net] has joined #bitcoin-core-dev 09:24 < MarcoFalke> Couldn't we just get rid of bdb, so no one has to figure out how to fix those bugs?(c.f. https://github.com/bitcoin/bitcoin/issues?q=is%3Aopen+is%3Aissue+author%3AMarcoFalke+label%3AWallet ) 09:25 < GitHub31> [bitcoin] laanwj opened pull request #8039: bench: Add hash benchmarks (master...2016_05_benchmark_sha256) https://github.com/bitcoin/bitcoin/pull/8039 09:25 < MarcoFalke> sdaftuar, if you are the only one observing this issue, I am not considering it a blocker for this pull. 09:25 < MarcoFalke> Mind to open a issue? 09:26 < sdaftuar> yep that seems fair 09:26 < sdaftuar> thanks 09:29 < GitHub51> [bitcoin] MarcoFalke pushed 3 new commits to master: https://github.com/bitcoin/bitcoin/compare/373b50debaa9...423ca302a3ee 09:29 < GitHub51> bitcoin/master fa494de MarcoFalke: [qa] pull-tester: Run rpc test in parallel 09:29 < GitHub51> bitcoin/master ccccc59 MarcoFalke: [qa] Add option --portseed to test_framework 09:29 < GitHub51> bitcoin/master 423ca30 MarcoFalke: Merge #7972: [qa] pull-tester: Run rpc test in parallel... 09:29 < GitHub113> [bitcoin] MarcoFalke closed pull request #7972: [qa] pull-tester: Run rpc test in parallel (master...Mf1604-qaParallel) https://github.com/bitcoin/bitcoin/pull/7972 09:31 -!- murch [~murch@p4FE3A0C2.dip0.t-ipconnect.de] has quit [Ping timeout: 246 seconds] 09:32 -!- G2lius [~stefangil@109.201.137.10] has joined #bitcoin-core-dev 09:35 -!- G1lius [~stefangil@109.201.137.10] has quit [Ping timeout: 260 seconds] 09:35 -!- murch [~murch@p4FE398D1.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 09:37 -!- gill3s [~textual@unaffiliated/gill3s] has quit [Quit: My Mac has gone to sleep. ZZZzzz…] 09:41 < sipa> wumpus: i set my cpu to a fixed clock speed, run a microbenchmark, measure how long it takes, multiply by clock speed :) 09:41 < sipa> /etc/init.d/cpufrequtils stop && for A in $(seq 0 7); do cpufreq-set -c $A -g performance -d 2.6GHz -u 2.6GHz; done 09:42 -!- cryptapus_ [~cyptapus@66.119.84.15] has joined #bitcoin-core-dev 09:42 -!- cryptapus_ [~cyptapus@66.119.84.15] has quit [Changing host] 09:42 -!- cryptapus_ [~cyptapus@unaffiliated/cryptapus] has joined #bitcoin-core-dev 09:42 < sipa> (where 2.6 GHz is one below the max non-turbo speed my CPU is capable of) 09:45 -!- cryptapus [~cyptapus@unaffiliated/cryptapus] has quit [Ping timeout: 240 seconds] 09:46 -!- MarcoFalke [8af602ae@gateway/web/cgi-irc/kiwiirc.com/ip.138.246.2.174] has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 09:47 -!- cryptapus_ [~cyptapus@unaffiliated/cryptapus] has quit [Client Quit] 09:47 -!- cryptapus_ [~cyptapus@87.254.202.158] has joined #bitcoin-core-dev 09:47 -!- cryptapus_ [~cyptapus@87.254.202.158] has quit [Changing host] 09:47 -!- cryptapus_ [~cyptapus@unaffiliated/cryptapus] has joined #bitcoin-core-dev 09:48 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 250 seconds] 09:50 -!- kadoban [~mud@unaffiliated/kadoban] has joined #bitcoin-core-dev 09:53 -!- CubicEarth [~cubiceart@c-73-68-232-79.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 09:55 -!- zooko [~user@2601:281:8000:8387:341e:308b:baa4:35e0] has quit [Remote host closed the connection] 09:57 -!- earlest [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 10:00 -!- bysherper [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 10:01 -!- bysherper [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 10:04 -!- earlest [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 10:06 -!- erasmospunk [~erasmospu@151.41.110.106] has quit [Quit: ttm] 10:07 -!- lecusemble [~lecusembl@104.233.76.133] has joined #bitcoin-core-dev 10:51 -!- earlest [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 10:54 -!- bysherper [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 10:58 -!- mishfit [~mishfit@45.74.21.136] has joined #bitcoin-core-dev 11:06 -!- Guest89406 [~socrates1@li175-104.members.linode.com] has quit [Changing host] 11:06 -!- Guest89406 [~socrates1@unaffiliated/socrates1024] has joined #bitcoin-core-dev 11:06 -!- Guest89406 is now known as amiller 11:15 -!- G2lius [~stefangil@109.201.137.10] has quit [] 11:25 -!- Codfection [~Codfectio@175.143.234.46] has joined #bitcoin-core-dev 11:28 -!- arubi [~ese168@unaffiliated/arubi] has joined #bitcoin-core-dev 11:30 -!- Codfection [~Codfectio@175.143.234.46] has quit [Quit: Leaving] 11:44 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 11:51 -!- Amnez777 [~Amnez777@37.157.216.141] has joined #bitcoin-core-dev 12:02 -!- bysherper [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 12:03 -!- phish [~phish@unaffiliated/phish-] has quit [Ping timeout: 252 seconds] 12:05 -!- earlest [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 12:07 -!- CubicEarth [~cubiceart@c-73-68-232-79.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 12:07 -!- CubicEarth [~cubiceart@c-73-68-232-79.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 12:13 -!- phish [~phish@cpe-172-90-99-174.socal.res.rr.com] has joined #bitcoin-core-dev 12:15 -!- cryptapus_ is now known as cryptapus 12:28 -!- earlest [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 12:31 -!- bysherper [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 12:32 -!- molz [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 12:34 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 12:35 -!- molly [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 12:38 -!- molz [~molly@unaffiliated/molly] has quit [Ping timeout: 244 seconds] 12:39 -!- TomMc [~tom@unaffiliated/tommc] has quit [Ping timeout: 244 seconds] 12:39 -!- molly [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 12:41 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 12:43 -!- phish [~phish@cpe-172-90-99-174.socal.res.rr.com] has quit [Changing host] 12:43 -!- phish [~phish@unaffiliated/phish-] has joined #bitcoin-core-dev 12:53 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 12:57 -!- mishfit_ [~mishfit@50-73-32-49-utah.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 12:57 -!- mishfit [~mishfit@45.74.21.136] has quit [Ping timeout: 246 seconds] 12:57 -!- mishfit_ is now known as mishfit 12:58 -!- go1111111 [~go1111111@104.200.154.34] has quit [Ping timeout: 260 seconds] 13:02 -!- cryptapus [~cyptapus@unaffiliated/cryptapus] has quit [Ping timeout: 265 seconds] 13:12 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has joined #bitcoin-core-dev 13:16 -!- Don_John [~Don@251-223-114-134.nat.resnet.nau.edu] has joined #bitcoin-core-dev 13:16 -!- Don_John [~Don@251-223-114-134.nat.resnet.nau.edu] has quit [Client Quit] 13:26 < warren> wumpus: regarding https://github.com/bitcoin/bitcoin/pull/8033 are we leaning toward not fixing minor problems here because of the network rewrite? 13:36 -!- TomMc [~tom@unaffiliated/tommc] has joined #bitcoin-core-dev 13:43 -!- Cheeseo [~x@unaffiliated/cheeseo] has quit [Read error: Connection reset by peer] 13:45 -!- go1111111 [~go1111111@104.232.116.217] has joined #bitcoin-core-dev 13:47 -!- Cheeseo [~x@c-71-58-178-138.hsd1.pa.comcast.net] has joined #bitcoin-core-dev 13:47 -!- Cheeseo [~x@c-71-58-178-138.hsd1.pa.comcast.net] has quit [Changing host] 13:47 -!- Cheeseo [~x@unaffiliated/cheeseo] has joined #bitcoin-core-dev 13:55 -!- BitcoinErrorLog [~bitcoiner@c-71-203-187-87.hsd1.fl.comcast.net] has quit [Ping timeout: 240 seconds] 14:03 -!- cryptapus_afk is now known as cryptapus 14:23 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 240 seconds] 14:26 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 14:32 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has quit [Remote host closed the connection] 14:45 -!- bysherper [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 14:47 -!- earlest [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 14:54 -!- bysherper [~denetrabu@96.93.57.150] has quit [Ping timeout: 240 seconds] 15:05 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has joined #bitcoin-core-dev 15:11 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Remote host closed the connection] 15:12 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 15:13 -!- TomMc [~tom@unaffiliated/tommc] has quit [Ping timeout: 252 seconds] 15:14 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 260 seconds] 15:15 -!- mishfit [~mishfit@50-73-32-49-utah.hfc.comcastbusiness.net] has quit [Quit: mishfit] 15:29 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 15:31 < warren> luke-jr: ping 15:31 < luke-jr> … 15:32 < warren> luke-jr: I wanted an error() that did the same thing except did not print "ERROR:" as these are not errors. 15:32 < luke-jr> oh 15:32 < warren> then I heard not to add more stuff because we're getting rid of all this with the network rewrite 15:33 < luke-jr> k 16:09 -!- murch [~murch@p4FE398D1.dip0.t-ipconnect.de] has quit [Quit: Leaving.] 16:38 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 16:48 -!- mrkent [~textual@unaffiliated/mrkent] has joined #bitcoin-core-dev 16:51 -!- muuqwaul [~denetrabu@96.93.57.150] has joined #bitcoin-core-dev 17:02 < phantomcircuit> walletbackup.py test appears to be broken 17:04 -!- alpalp [~allen@104-54-235-28.lightspeed.austtx.sbcglobal.net] has joined #bitcoin-core-dev 17:04 -!- alpalp [~allen@104-54-235-28.lightspeed.austtx.sbcglobal.net] has quit [Changing host] 17:04 -!- alpalp [~allen@unaffiliated/alpalp] has joined #bitcoin-core-dev 17:06 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Quit: laurentmt] 17:35 -!- fengling [~fengling@111.198.29.53] has joined #bitcoin-core-dev 17:44 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has quit [] 17:51 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-klxmkujwcbzelawj] has quit [Quit: Connection closed for inactivity] 17:54 < phantomcircuit> wumpus, it would make things so much easier if the accounts stuff was gone 18:05 -!- dermoth_ [~thomas@dsl-66-36-143-241.mtl.aei.ca] has quit [Read error: Connection reset by peer] 18:06 -!- dermoth_ [~thomas@dsl-66-36-143-241.mtl.aei.ca] has joined #bitcoin-core-dev 18:07 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has quit [Quit: Leaving] 18:18 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has joined #bitcoin-core-dev 18:22 -!- cryptapus is now known as cryptapus_afk 18:29 -!- laurentmt [~Thunderbi@176.158.157.202] has joined #bitcoin-core-dev 18:29 -!- laurentmt [~Thunderbi@176.158.157.202] has quit [Client Quit] 18:35 -!- dermoth_ [~thomas@dsl-66-36-143-241.mtl.aei.ca] has quit [Read error: Connection reset by peer] 18:36 -!- dermoth_ [~thomas@dsl-66-36-143-241.mtl.aei.ca] has joined #bitcoin-core-dev 18:48 -!- zooko [~user@c-73-229-199-227.hsd1.co.comcast.net] has joined #bitcoin-core-dev 19:12 -!- achow101 [~achow101@pool-96-227-114-115.phlapa.fios.verizon.net] has quit [Read error: Connection reset by peer] 19:35 -!- hsmiths [~hsmiths@cpe-76-174-26-91.socal.res.rr.com] has quit [Quit: END OF LINE] 19:40 -!- jtimon [~quassel@65.28.134.37.dynamic.jazztel.es] has quit [Ping timeout: 276 seconds] 19:40 -!- hsmiths [~hsmiths@cpe-76-174-26-91.socal.res.rr.com] has joined #bitcoin-core-dev 20:12 -!- Giszmo [~leo@pc-122-14-46-190.cm.vtr.net] has quit [Quit: Leaving.] 20:14 -!- CubicEarth [~cubiceart@c-73-68-232-79.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 20:14 -!- CubicEarth [~cubiceart@c-73-68-232-79.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 20:20 -!- alpalp [~allen@unaffiliated/alpalp] has quit [Ping timeout: 276 seconds] 20:49 -!- bustd_soket [weechat@gateway/vpn/mullvad/x-dshysswekewscczu] has quit [Ping timeout: 240 seconds] 20:58 -!- fengling [~fengling@111.198.29.53] has quit [Ping timeout: 240 seconds] 21:00 -!- fengling [~fengling@111.198.29.53] has joined #bitcoin-core-dev 21:02 -!- go1111111 [~go1111111@104.232.116.217] has quit [Ping timeout: 276 seconds] 21:15 -!- go1111111 [~go1111111@104.200.154.17] has joined #bitcoin-core-dev 21:19 -!- mrkent [~textual@unaffiliated/mrkent] has quit [] 21:20 -!- xiangfu [~xiangfu@111.198.29.53] has joined #bitcoin-core-dev 21:37 -!- bustd_soket [weechat@gateway/vpn/mullvad/x-ehyrladjdhkqdbal] has joined #bitcoin-core-dev 21:55 -!- BashCo_ [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 21:58 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Ping timeout: 265 seconds] 22:01 -!- mrkent [~textual@unaffiliated/mrkent] has joined #bitcoin-core-dev 22:14 -!- fengling [~fengling@111.198.29.53] has quit [Ping timeout: 240 seconds] 22:18 -!- fengling [~fengling@111.198.29.53] has joined #bitcoin-core-dev 22:28 -!- fengling [~fengling@111.198.29.53] has quit [Ping timeout: 240 seconds] 22:36 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-ehosblndzupixirc] has joined #bitcoin-core-dev 22:39 -!- CubicEarth [~cubiceart@c-73-68-232-79.hsd1.ma.comcast.net] has quit [Read error: Connection reset by peer] 22:40 -!- CubicEarth [~cubiceart@c-73-68-232-79.hsd1.ma.comcast.net] has joined #bitcoin-core-dev 22:43 -!- mrkent [~textual@unaffiliated/mrkent] has quit [] 22:43 -!- dirtynewshoes [~dirtynews@sydnns0115w-047054250089.dhcp-dynamic.FibreOP.ns.bellaliant.net] has quit [Ping timeout: 240 seconds] 22:49 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 22:50 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 23:03 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has quit [Quit: Leaving] 23:28 -!- fengling [~fengling@111.198.29.53] has joined #bitcoin-core-dev 23:38 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 23:39 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 23:48 -!- murch [~murch@p4FDB709F.dip0.t-ipconnect.de] has joined #bitcoin-core-dev