1 2015-10-17T00:01:59 *** moli has quit IRC
2 2015-10-17T00:24:18 *** Ylbam has quit IRC
3 2015-10-17T00:58:26 *** aj has quit IRC
4 2015-10-17T01:00:31 *** aj has joined #bitcoin-core-dev
5 2015-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
6 2015-10-17T01:55:55 *** belcher has quit IRC
7 2015-10-17T02:04:01 *** go1111111 has quit IRC
8 2015-10-17T02:17:52 *** go1111111 has joined #bitcoin-core-dev
9 2015-10-17T02:54:47 *** dgenr8 has quit IRC
10 2015-10-17T05:53:17 *** wumpus has quit IRC
11 2015-10-17T05:54:27 *** wumpus has joined #bitcoin-core-dev
12 2015-10-17T06:58:47 *** Ylbam has joined #bitcoin-core-dev
13 2015-10-17T07:14:36 *** paveljanik has quit IRC
14 2015-10-17T08:23:12 *** d_t has quit IRC
15 2015-10-17T09:12:24 *** CodeShark has joined #bitcoin-core-dev
16 2015-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
17 2015-10-17T10:45:07 *** CodeShark has quit IRC
18 2015-10-17T11:02:27 *** dhill has quit IRC
19 2015-10-17T11:10:36 *** CodeShark has joined #bitcoin-core-dev
20 2015-10-17T11:53:58 *** Thireus has quit IRC
21 2015-10-17T11:54:16 *** Thireus has joined #bitcoin-core-dev
22 2015-10-17T11:57:13 *** Thireus has quit IRC
23 2015-10-17T11:59:56 *** Thireus has joined #bitcoin-core-dev
24 2015-10-17T12:02:56 *** belcher has joined #bitcoin-core-dev
25 2015-10-17T12:39:01 *** Arnavion has quit IRC
26 2015-10-17T12:39:18 *** Arnavion has joined #bitcoin-core-dev
27 2015-10-17T12:39:26 *** AtashiCon has quit IRC
28 2015-10-17T12:39:40 *** AtashiCon has joined #bitcoin-core-dev
29 2015-10-17T13:10:03 *** midnightmagic has quit IRC
30 2015-10-17T14:14:05 *** PRab has quit IRC
31 2015-10-17T14:29:14 *** PRab has joined #bitcoin-core-dev
32 2015-10-17T14:56:11 *** ProfMac has quit IRC
33 2015-10-17T15:11:04 *** ProfMac has joined #bitcoin-core-dev
34 2015-10-17T16:56:54 *** d_t has joined #bitcoin-core-dev
35 2015-10-17T17:23:02 *** JoeLiu has joined #bitcoin-core-dev
36 2015-10-17T17:48:16 *** jl2012_ has quit IRC
37 2015-10-17T18:04:03 *** challisto has quit IRC
38 2015-10-17T18:08:52 *** CodeShark_ has joined #bitcoin-core-dev
39 2015-10-17T18:08:58 *** d_t has quit IRC
40 2015-10-17T18:34:43 *** Thireus has quit IRC
41 2015-10-17T18:34:57 *** Thireus has joined #bitcoin-core-dev
42 2015-10-17T19:12:38 <michagogo> Hm. Turns out -? is the documented way of doing it
43 2015-10-17T19:12:41 <michagogo> And --help works too
44 2015-10-17T19:12:46 <michagogo> but -h just starts the node
45 2015-10-17T19:12:56 <michagogo> ...which can't easily be immediately stopped...
46 2015-10-17T19:21:02 <gmaxwell> our commandline has never been very unixy. It's gotten better.
47 2015-10-17T19:35:45 *** JoeLiu has quit IRC
48 2015-10-17T19:45:00 *** belcher has quit IRC
49 2015-10-17T19:55:54 *** belcher has joined #bitcoin-core-dev
50 2015-10-17T19:58:43 *** CodeShark has quit IRC
51 2015-10-17T19:58:54 *** CodeShark_ has quit IRC
52 2015-10-17T19:59:05 *** CodeShark has joined #bitcoin-core-dev
53 2015-10-17T20:07:25 *** Thireus has quit IRC
54 2015-10-17T20:07:34 *** Thireus has joined #bitcoin-core-dev
55 2015-10-17T20:17:09 *** Thireus1 has joined #bitcoin-core-dev
56 2015-10-17T20:17:12 <GitHub179> [bitcoin] lclc opened pull request #6844: [REST] Add sendrawtransaction (master...sendrawtransactionREST) https://github.com/bitcoin/bitcoin/pull/6844
57 2015-10-17T20:20:03 *** Thireus has quit IRC
58 2015-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?
59 2015-10-17T20:29:15 <morcos> But if we're pushing the signature validations into a cache, isn't that a bit backwards?
60 2015-10-17T20:32:52 <morcos> hmm, no that doesn't make sense b/c cs_main is locked, so they wouldn't conflict
61 2015-10-17T20:48:08 *** Thireus has joined #bitcoin-core-dev
62 2015-10-17T20:51:37 *** Thireus1 has quit IRC
63 2015-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.
64 2015-10-17T21:09:20 <morcos> huh?
65 2015-10-17T21:09:32 <morcos> doesn't ConnectBlock also only thread 1 tx at a time?
66 2015-10-17T21:09:39 <morcos> why would it be a bigger win there?
67 2015-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
68 2015-10-17T21:10:28 <morcos> in the recent spam attack with a lot of 100txin txs, i think it would be nice
69 2015-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
70 2015-10-17T21:17:01 <gmaxwell> well perhaps the world has changed since I tried it before!
71 2015-10-17T21:19:07 <morcos> i've only done a cursory look, it seems like the signature cache already has a lock..
72 2015-10-17T21:33:33 *** challisto has joined #bitcoin-core-dev