12015-10-17T00:01:59 *** moli has quit IRC
22015-10-17T00:24:18 *** Ylbam has quit IRC
32015-10-17T00:58:26 *** aj has quit IRC
42015-10-17T01:00:31 *** aj has joined #bitcoin-core-dev
52015-10-17T01:41:23 <GitHub32> [bitcoin] ptschip opened pull request #6842: limitfreerelay edge case bugfix: (master...limitfreerelay_edgecase) https://github.com/bitcoin/bitcoin/pull/6842
62015-10-17T01:55:55 *** belcher has quit IRC
72015-10-17T02:04:01 *** go1111111 has quit IRC
82015-10-17T02:17:52 *** go1111111 has joined #bitcoin-core-dev
92015-10-17T02:54:47 *** dgenr8 has quit IRC
102015-10-17T05:53:17 *** wumpus has quit IRC
112015-10-17T05:54:27 *** wumpus has joined #bitcoin-core-dev
122015-10-17T06:58:47 *** Ylbam has joined #bitcoin-core-dev
132015-10-17T07:14:36 *** paveljanik has quit IRC
142015-10-17T08:23:12 *** d_t has quit IRC
152015-10-17T09:12:24 *** CodeShark has joined #bitcoin-core-dev
162015-10-17T10:19:42 <GitHub135> [bitcoin] mitchellcash opened pull request #6843: Trivial: Correct spelling mistakes in doc folder (master...spelling_fixes) https://github.com/bitcoin/bitcoin/pull/6843
172015-10-17T10:45:07 *** CodeShark has quit IRC
182015-10-17T11:02:27 *** dhill has quit IRC
192015-10-17T11:10:36 *** CodeShark has joined #bitcoin-core-dev
202015-10-17T11:53:58 *** Thireus has quit IRC
212015-10-17T11:54:16 *** Thireus has joined #bitcoin-core-dev
222015-10-17T11:57:13 *** Thireus has quit IRC
232015-10-17T11:59:56 *** Thireus has joined #bitcoin-core-dev
242015-10-17T12:02:56 *** belcher has joined #bitcoin-core-dev
252015-10-17T12:39:01 *** Arnavion has quit IRC
262015-10-17T12:39:18 *** Arnavion has joined #bitcoin-core-dev
272015-10-17T12:39:26 *** AtashiCon has quit IRC
282015-10-17T12:39:40 *** AtashiCon has joined #bitcoin-core-dev
292015-10-17T13:10:03 *** midnightmagic has quit IRC
302015-10-17T14:14:05 *** PRab has quit IRC
312015-10-17T14:29:14 *** PRab has joined #bitcoin-core-dev
322015-10-17T14:56:11 *** ProfMac has quit IRC
332015-10-17T15:11:04 *** ProfMac has joined #bitcoin-core-dev
342015-10-17T16:56:54 *** d_t has joined #bitcoin-core-dev
352015-10-17T17:23:02 *** JoeLiu has joined #bitcoin-core-dev
362015-10-17T17:48:16 *** jl2012_ has quit IRC
372015-10-17T18:04:03 *** challisto has quit IRC
382015-10-17T18:08:52 *** CodeShark_ has joined #bitcoin-core-dev
392015-10-17T18:08:58 *** d_t has quit IRC
402015-10-17T18:34:43 *** Thireus has quit IRC
412015-10-17T18:34:57 *** Thireus has joined #bitcoin-core-dev
422015-10-17T19:12:38 <michagogo> Hm. Turns out -? is the documented way of doing it
432015-10-17T19:12:41 <michagogo> And --help works too
442015-10-17T19:12:46 <michagogo> but -h just starts the node
452015-10-17T19:12:56 <michagogo> ...which can't easily be immediately stopped...
462015-10-17T19:21:02 <gmaxwell> our commandline has never been very unixy. It's gotten better.
472015-10-17T19:35:45 *** JoeLiu has quit IRC
482015-10-17T19:45:00 *** belcher has quit IRC
492015-10-17T19:55:54 *** belcher has joined #bitcoin-core-dev
502015-10-17T19:58:43 *** CodeShark has quit IRC
512015-10-17T19:58:54 *** CodeShark_ has quit IRC
522015-10-17T19:59:05 *** CodeShark has joined #bitcoin-core-dev
532015-10-17T20:07:25 *** Thireus has quit IRC
542015-10-17T20:07:34 *** Thireus has joined #bitcoin-core-dev
552015-10-17T20:17:09 *** Thireus1 has joined #bitcoin-core-dev
562015-10-17T20:17:12 <GitHub179> [bitcoin] lclc opened pull request #6844: [REST] Add sendrawtransaction (master...sendrawtransactionREST) https://github.com/bitcoin/bitcoin/pull/6844
572015-10-17T20:20:03 *** Thireus has quit IRC
582015-10-17T20:29:01 <morcos> so script checking is only single threaded in AcceptToMemoryPool? Is that so we are saving our processing power to process blocks quickly?
592015-10-17T20:29:15 <morcos> But if we're pushing the signature validations into a cache, isn't that a bit backwards?
602015-10-17T20:32:52 <morcos> hmm, no that doesn't make sense b/c cs_main is locked, so they wouldn't conflict
612015-10-17T20:48:08 *** Thireus has joined #bitcoin-core-dev
622015-10-17T20:51:37 *** Thireus1 has quit IRC
632015-10-17T21:06:37 <gmaxwell> it's just inherently single threaded due to locking orginization. and the threading overheads mean that threading just two signatures is probably not a win.
642015-10-17T21:09:20 <morcos> huh?
652015-10-17T21:09:32 <morcos> doesn't ConnectBlock also only thread 1 tx at a time?
662015-10-17T21:09:39 <morcos> why would it be a bigger win there?
672015-10-17T21:10:09 <morcos> i just hacked it together, it does seem faster, although its not a huge gain, it significantly reduces the big outliers in ATMP
682015-10-17T21:10:28 <morcos> in the recent spam attack with a lot of 100txin txs, i think it would be nice
692015-10-17T21:10:54 <morcos> of course i'm sure my hacked together code might not be thread safe, so i might still be missing what you're talking about
702015-10-17T21:17:01 <gmaxwell> well perhaps the world has changed since I tried it before!
712015-10-17T21:19:07 <morcos> i've only done a cursory look, it seems like the signature cache already has a lock..
722015-10-17T21:33:33 *** challisto has joined #bitcoin-core-dev