--- Day changed Sat Oct 17 2015 00:14 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has quit [Quit: Leaving] 01:23 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 02:12 -!- CodeShark [~CodeShark@cpe-76-167-237-202.san.res.rr.com] has joined #bitcoin-core-dev 03:19 < GitHub135> [bitcoin] mitchellcash opened pull request #6843: Trivial: Correct spelling mistakes in doc folder (master...spelling_fixes) https://github.com/bitcoin/bitcoin/pull/6843 03:45 -!- CodeShark [~CodeShark@cpe-76-167-237-202.san.res.rr.com] has quit [Ping timeout: 260 seconds] 04:02 -!- dhill [~dhill@phengo.phobia.ms] has quit [Remote host closed the connection] 04:10 -!- CodeShark [~androirc@cpe-76-167-237-202.san.res.rr.com] has joined #bitcoin-core-dev 04:53 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Quit: Leaving.] 04:54 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 04:57 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Remote host closed the connection] 04:59 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 05:02 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 05:39 -!- Arnavion [arnavion@unaffiliated/arnavion] has quit [Read error: Connection reset by peer] 05:39 -!- Arnavion [arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 05:39 -!- AtashiCon [arnavion@unaffiliated/arnavion] has quit [Remote host closed the connection] 05:39 -!- AtashiCon [arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 06:10 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has quit [Ping timeout: 250 seconds] 07:14 -!- PRab [~chatzilla@2601:40a:8000:8f9b:6059:f864:4ad7:aa7b] has quit [Quit: ChatZilla 0.9.92 [Firefox 41.0.1/20150929144111]] 07:29 -!- PRab [~chatzilla@2601:40a:8000:8f9b:6059:f864:4ad7:aa7b] has joined #bitcoin-core-dev 07:56 -!- ProfMac [~ProfMac@67-198-113-220.static.grandenetworks.net] has quit [Ping timeout: 244 seconds] 08:11 -!- ProfMac [~ProfMac@67-198-113-220.static.grandenetworks.net] has joined #bitcoin-core-dev 09:56 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 10:23 -!- JoeLiu [uid88238@gateway/web/irccloud.com/x-jglzjqtryuyawqvu] has joined #bitcoin-core-dev 10:48 -!- jl2012_ [~jl2012@119246245241.ctinets.com] has quit [Read error: Connection reset by peer] 11:04 -!- challisto [~challisto@unaffiliated/challisto] has quit [Quit: Leaving] 11:08 -!- CodeShark_ [CodeShark@cpe-76-167-237-202.san.res.rr.com] has joined #bitcoin-core-dev 11:08 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 11:34 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Quit: Leaving.] 11:34 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 12:12 < michagogo> Hm. Turns out -? is the documented way of doing it 12:12 < michagogo> And --help works too 12:12 < michagogo> but -h just starts the node 12:12 < michagogo> ...which can't easily be immediately stopped... 12:21 < gmaxwell> our commandline has never been very unixy. It's gotten better. 12:35 -!- JoeLiu [uid88238@gateway/web/irccloud.com/x-jglzjqtryuyawqvu] has quit [Quit: Connection closed for inactivity] 12:45 -!- belcher [~user@unaffiliated/belcher] has quit [Read error: Connection reset by peer] 12:55 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 12:58 -!- CodeShark [~androirc@cpe-76-167-237-202.san.res.rr.com] has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )] 12:58 -!- CodeShark_ [CodeShark@cpe-76-167-237-202.san.res.rr.com] has quit [] 12:59 -!- CodeShark [CodeShark@cpe-76-167-237-202.san.res.rr.com] has joined #bitcoin-core-dev 13:07 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Quit: Leaving.] 13:07 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 13:17 -!- Thireus1 [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 13:17 < GitHub179> [bitcoin] lclc opened pull request #6844: [REST] Add sendrawtransaction (master...sendrawtransactionREST) https://github.com/bitcoin/bitcoin/pull/6844 13:20 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Ping timeout: 255 seconds] 13:29 < morcos> so script checking is only single threaded in AcceptToMemoryPool? Is that so we are saving our processing power to process blocks quickly? 13:29 < morcos> But if we're pushing the signature validations into a cache, isn't that a bit backwards? 13:32 < morcos> hmm, no that doesn't make sense b/c cs_main is locked, so they wouldn't conflict 13:48 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 13:51 -!- Thireus1 [~Thireus@icy.thireus.fr] has quit [Ping timeout: 265 seconds] 14:06 < 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. 14:09 < morcos> huh? 14:09 < morcos> doesn't ConnectBlock also only thread 1 tx at a time? 14:09 < morcos> why would it be a bigger win there? 14:10 < morcos> i just hacked it together, it does seem faster, although its not a huge gain, it significantly reduces the big outliers in ATMP 14:10 < morcos> in the recent spam attack with a lot of 100txin txs, i think it would be nice 14:10 < 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 14:17 < gmaxwell> well perhaps the world has changed since I tried it before! 14:19 < morcos> i've only done a cursory look, it seems like the signature cache already has a lock.. 14:33 -!- challisto [~challisto@unaffiliated/challisto] has joined #bitcoin-core-dev 17:04 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 17:09 -!- CodeShark [CodeShark@cpe-76-167-237-202.san.res.rr.com] has quit [Ping timeout: 246 seconds] 17:15 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has joined #bitcoin-core-dev 17:23 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has quit [Quit: quit] 17:24 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has joined #bitcoin-core-dev 17:27 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Ping timeout: 252 seconds] 18:54 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-vgamwgmvvisyozwq] has quit [Quit: Connection closed for inactivity] 19:05 -!- belcher [~user@unaffiliated/belcher] has quit [Quit: Leaving] 19:43 -!- alpalp [6836eb1c@gateway/web/cgi-irc/kiwiirc.com/ip.104.54.235.28] has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 19:45 -!- alpalp [6836eb1c@gateway/web/cgi-irc/kiwiirc.com/ip.104.54.235.28] has joined #bitcoin-core-dev 19:49 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 19:59 -!- fkhan [weechat@gateway/vpn/mullvad/x-pezvqznabjbobkid] has quit [Ping timeout: 250 seconds] 20:11 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 20:12 -!- fkhan [weechat@gateway/vpn/mullvad/x-nttkqpmmemtcgfgu] has joined #bitcoin-core-dev 21:54 -!- PRab_ [~chatzilla@2601:40a:8000:8f9b:6059:f864:4ad7:aa7b] has joined #bitcoin-core-dev 21:55 -!- gribble [~gribble@unaffiliated/nanotube/bot/gribble] has quit [Disconnected by services] 21:57 -!- helo_ [~helo@unaffiliated/helo] has joined #bitcoin-core-dev 21:58 -!- gmaxwell_ [greg@mf4-xiph.osuosl.org] has joined #bitcoin-core-dev 21:58 -!- gavinand1esen [~gavin@unaffiliated/gavinandresen] has joined #bitcoin-core-dev 21:58 -!- luke-jr_ [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 21:58 -!- aj__ [aj@cerulean.erisian.com.au] has joined #bitcoin-core-dev 21:58 -!- gmaxwell_ is now known as Guest81501 21:59 -!- Guest81501 [greg@mf4-xiph.osuosl.org] has quit [Changing host] 21:59 -!- Guest81501 [greg@wikimedia/KatWalsh/x-0001] has joined #bitcoin-core-dev 22:01 -!- cfields_ [~quassel@unaffiliated/cfields] has joined #bitcoin-core-dev 22:01 -!- phantomcircuit_ [~phantomci@strateman.ninja] has joined #bitcoin-core-dev 22:02 -!- Netsplit *.net <-> *.split quits: baldur, BlueMatt, phantomcircuit, GAit, gmaxwell, PRab, aj, cfields, gavinandresen, Luke-Jr, (+3 more, use /NETSPLIT to show all of them) 22:03 -!- Netsplit over, joins: GAit 22:03 -!- GAit is now known as Guest13178 22:03 -!- phantomcircuit_ is now known as phantomcircuit 22:03 -!- Netsplit over, joins: berndj 22:04 -!- Netsplit over, joins: BlueMatt 22:09 -!- gribble [~gribble@unaffiliated/nanotube/bot/gribble] has joined #bitcoin-core-dev 22:09 -!- Netsplit over, joins: baldur 22:10 -!- ProfMac [~ProfMac@67-198-113-220.static.grandenetworks.net] has quit [Ping timeout: 240 seconds] 22:12 -!- luke-jr_ is now known as Luke-Jr 22:22 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 22:50 -!- JoeLiu [uid88238@gateway/web/irccloud.com/x-pgrnmyjmjgogushq] has joined #bitcoin-core-dev 22:56 -!- jonasschnelli [~jonasschn@2a01:4f8:200:7025::2] has joined #bitcoin-core-dev 23:40 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 23:58 -!- Guest81501 is now known as gmaxwell