--- Day changed Tue Oct 13 2015 00:13 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 00:40 -!- ParadoxSpiral [~ParadoxSp@p508B8A85.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 00:40 -!- ParadoxSpiral_ [~ParadoxSp@p508B9E79.dip0.t-ipconnect.de] has quit [Ping timeout: 252 seconds] 00:42 -!- trippysalmon [~Rob@ip4da81ded.direct-adsl.nl] has joined #bitcoin-core-dev 00:45 -!- AtashiCon [arnavion@unaffiliated/arnavion] has quit [Quit: AtashiCon] 00:54 -!- AtashiCon [arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 01:04 < GitHub3> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/4ca6ddec4d79...1fc5ca05cacc 01:04 < GitHub3> bitcoin/master 2c4ffbc BtcDrak: Create btcdrak-key.pgp 01:04 < GitHub3> bitcoin/master 1fc5ca0 Wladimir J. van der Laan: Merge pull request #6805... 01:04 < GitHub75> [bitcoin] laanwj closed pull request #6805: Create btcdrak-key.pgp (master...btcdrakpgp) https://github.com/bitcoin/bitcoin/pull/6805 01:05 < GitHub11> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/1fc5ca05cacc...cd57f344a591 01:05 < GitHub11> bitcoin/master 3b363df Paul Rabahy: Updated Prab's PGP Key... 01:05 < GitHub11> bitcoin/master cd57f34 Wladimir J. van der Laan: Merge pull request #6807... 01:05 < GitHub196> [bitcoin] laanwj closed pull request #6807: Updated Prab's PGP Key (master...NewGPG) https://github.com/bitcoin/bitcoin/pull/6807 01:08 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 01:09 < jonasschnelli> wumpus: Hmm... does AddOneShot() (-seednode) retrieves addr data from one node before actually connection to nodes (static ip list)? 01:09 < sipa> parse error 01:10 < wumpus> jonasschnelli: ThreadDNSAddressSeed queues those connections, if a proxy is used, instead of DNS 01:10 < sipa> what is 'queuing a connection' ? 01:12 < wumpus> adding it to vOneShots 01:12 < wumpus> https://github.com/bitcoin/bitcoin/blob/master/src/net.cpp#L1409 01:13 -!- fanquake [~Adium@unaffiliated/fanquake] has joined #bitcoin-core-dev 01:13 < wumpus> then in ProcessOneShots, called by ThreadOpenConnections they are handled, one by one 01:14 < jonasschnelli> So adding a tor hidden service at seed.. (or similar) that redirects to a node running on the same system that can provide .onion addr data would be something that would be worth to achieve? 01:14 < wumpus> yes, that avoids using an exit node to conect to your domain 01:15 < sipa> we could just only have oneshots for seeding... 01:15 < wumpus> e.g. blablablabla.onion:8333 -> seed.bitcoin.jonasschnelli.ch:8333 means a node with Tor can connect to the onion instead, the exit node cannot interfere 01:15 < jonasschnelli> so we could flag dns seeds in chainparams.cpp (vSeeds) with a boolean for "tor hidden service" 01:15 < wumpus> a flag, or an extra string field per DNS seed 'hidden service alias, if applicable' 01:16 < sipa> or more generally, a Network enum 01:16 < sipa> to say what network they are on 01:16 < sipa> we could have ipv6 ones too 01:16 < wumpus> this keeps the DNS seed data for one logical seed together 01:16 < wumpus> right sipa 01:17 < wumpus> although a *name* can resolve to both ipv4 and ipv6 01:17 < wumpus> so that's already possible 01:17 < wumpus> (we refer to the DNS seeds by name, not by IP) 01:17 < sipa> dns seeding is annoying unflexible, because it doesn't really give ports, service bits, time last seen, ... 01:17 < sipa> we could probably use dns seeding as a means to find oneshots 01:18 < sipa> and the static ip list too 01:18 < jonasschnelli> we could do filtering dns output by quering different domainnames like x.seed.. ... x stands for service 01:19 < wumpus> the reason we have NameProxy is that you cannot see from a name which network it belongs to (unless it happens to be an .onion), so it's just passed to the proxy as-is, having the proxy figure out ipv4/ipv6/... 01:19 < sipa> yes, but it doesn't really scale well, plus we already have a protocol for getting address data in a much more featureful way 01:19 < sipa> (the p2p protocol) 01:20 < sipa> the big advantage of dns is that it's cached and harder tocblock 01:20 < wumpus> yes, that was the reason to use DNS 01:21 < wumpus> we could use more extensive data in the DNS records now that we use libevent 01:21 < wumpus> libevent's resolver can query TXT etc 01:21 < jonasschnelli> Yes. And i think that is a big advantage. Having a few oneShot nodes would give them the possibility to collect data, control the network. 01:22 < jonasschnelli> Not sure if TXT records will be pass through every DNS without problems 01:22 < wumpus> the oneshot nodes are great when DNS cannot be used, e.g. behind Tor, in which case .onion oneshot nodes would be good because the hidden service provides authentication and encryption 01:22 < jonasschnelli> But TXT record would give us some possibilities... likes service bits, signed responses, etc. 01:23 < wumpus> jonasschnelli: right, just raising it as an option, not saying it's the best 01:23 < wumpus> :using DNS seeds only to find oneshot nodes" would be OK with me too 01:23 < jonasschnelli> Someone should do a research/analysis how easy it is to deploy TXT records through the dns network. 01:24 < wumpus> then again, bbehind a proxy you can't use the DNS seeds so you need to hardcode oneshot nodes anyhow 01:24 < sipa> eh, right, that's independent 01:24 < wumpus> yes 01:24 < Luke-Jr> oneshot = connect and stay connected until it drops, right? 01:25 < Luke-Jr> isn't that what we already do for DNS seeds? 01:25 < sipa> Luke-Jr: connect, getaddr, disconnect 01:25 < Luke-Jr> sipa: that seems like something new? 01:25 < sipa> i think it's been in the code since 0.6 01:25 < wumpus> no, that's not something new - that's our way of seeding *if* DNS cannot be used, and has been for a long time 01:25 < Luke-Jr> hmm 01:26 < sipa> we use it instead of dns seeding when we're behind tor 01:26 < sipa> as it moves the dns resolving to tor 01:26 < Luke-Jr> does it stay connected until one of the other addresses connects successfully? 01:27 < wumpus> Luke-Jr: no, it disconnect when it receives an addr message 01:28 < fanquake> What are we doing for signing gitian builds now? Doesn't look like the sigs have been added to the detached sigs repo? 01:28 < wumpus> fanquake: they have been added 01:28 < fanquake> here https://github.com/bitcoin/bitcoin-detached-sigs ? 01:29 < wumpus> fanquake: attaching the detached signatures should 'just work' as documented in the release process - yes, there 01:29 < wumpus> fanquake: (it worked for me) 01:29 < wumpus> Luke-Jr: https://github.com/bitcoin/bitcoin/blob/master/src/main.cpp#L4089 01:29 < fanquake> eh sorry. I was only looking at the master branch... 01:36 -!- fanquake1 [~Adium@106-68-35-109.dyn.iinet.net.au] has joined #bitcoin-core-dev 01:45 -!- Netsplit *.net <-> *.split quits: fanquake 01:54 < GitHub199> [bitcoin] laanwj pushed 4 new commits to master: https://github.com/bitcoin/bitcoin/compare/cd57f344a591...97bee37d4c35 01:54 < GitHub199> bitcoin/master 313e7f5 MarcoFalke: Squashed 'src/univalue/' changes from 87d9045..5839ac3... 01:54 < GitHub199> bitcoin/master 31f4ba9 MarcoFalke: Merge commit '313e7f5c89d6e72e06efe9255089765b4c5815fe' into HEAD 01:55 < GitHub199> bitcoin/master 3b1279f Cory Fields: build: match upstream build change 01:55 < GitHub25> [bitcoin] laanwj closed pull request #6788: [trivial] sync univalue subtree (master...MarcoFalke-2015-syncUnivalue) https://github.com/bitcoin/bitcoin/pull/6788 01:57 < GitHub74> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/97bee37d4c35...feea3057df47 01:57 < GitHub74> bitcoin/master 3a4a458 Matt Corallo: Update bluematt-key, the old one is long-since revoked 01:57 < GitHub74> bitcoin/master feea305 Wladimir J. van der Laan: Merge pull request #6812... 01:57 < GitHub55> [bitcoin] laanwj closed pull request #6812: Update bluematt-key, the old one is long-since revoked (master...master) https://github.com/bitcoin/bitcoin/pull/6812 02:18 < fanquake1> wumpus I think your right about the pgp key confusion 02:19 < wumpus> fanquake1: yeh - not saying there shouldn't be a repository of dev pgp keys,but inside the repository itself would not be the right place :) 02:19 < fanquake1> Yep. Otherwise we'd end up with hundreds of keys.. 02:20 < wumpus> that too, but what security would it provide? to check the commits in the repository you use the keys in the repository 02:21 < fanquake1> Yes I agree. 02:22 < fanquake1> Will we have an rc3, or straight to release now? 02:26 < wumpus> depends on whether critical problems are reported with rc2 02:26 < wumpus> none yet AFAIK 02:30 -!- Arnavion [arnavion@unaffiliated/arnavion] has quit [Ping timeout: 256 seconds] 02:31 -!- randy-waterhouse [~kiwigb@opentransactions/dev/randy-waterhouse] has joined #bitcoin-core-dev 02:31 -!- AtashiCon [arnavion@unaffiliated/arnavion] has quit [Ping timeout: 265 seconds] 02:32 -!- AtashiCon [arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 02:32 -!- Arnavion [arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 02:35 < GitHub49> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/feea3057df47...01f74999e3df 02:35 < GitHub49> bitcoin/master 700f52e Eric Lombrozo: Clarification of unit test build instructions. 02:35 < GitHub49> bitcoin/master 01f7499 Wladimir J. van der Laan: Merge pull request #6798... 02:35 < GitHub85> [bitcoin] laanwj closed pull request #6798: Clarification of unit test build instructions. (master...unit_test_readme_fix) https://github.com/bitcoin/bitcoin/pull/6798 02:50 < GitHub143> [bitcoin] laanwj pushed 5 new commits to master: https://github.com/bitcoin/bitcoin/compare/01f74999e3df...16faccb736ab 02:50 < GitHub143> bitcoin/master 8a320c7 MarcoFalke: [trivial] Remove obsolete share/qt/make_windows_icon.sh 02:50 < GitHub143> bitcoin/master 3507992 MarcoFalke: [trivial] Make optimize-pngs.py also cover share/pixmaps... 02:50 < GitHub143> bitcoin/master 60a8b70 MarcoFalke: [doc] trivial: developer-notes.md covers more than just coding standards 02:50 < GitHub180> [bitcoin] laanwj closed pull request #6791: [trivial] Misc cleanup (master...MarcoFalke-2015-trivial2) https://github.com/bitcoin/bitcoin/pull/6791 03:01 -!- Guest82368 [~GAit@2-228-102-100.ip191.fastwebnet.it] has quit [Quit: It was good while it lasted!] 03:03 -!- GAit [~GAit@2-228-102-100.ip191.fastwebnet.it] has joined #bitcoin-core-dev 03:04 -!- GAit is now known as Guest58630 03:24 < GitHub10> [bitcoin] laanwj pushed 5 new commits to master: https://github.com/bitcoin/bitcoin/compare/16faccb736ab...9caaf6ed22d0 03:24 < GitHub10> bitcoin/master 3499ce1 Pieter Wuille: Encapsulate CLevelDB iterators cleanly... 03:24 < GitHub10> bitcoin/master 0fdf8c8 James O'Beirne: Handle obfuscation in CLevelDBIterator 03:24 < GitHub10> bitcoin/master 1488506 James O'Beirne: Add tests for gettxoutsetinfo, CLevelDBBatch, CLevelDBIterator... 03:24 < GitHub99> [bitcoin] laanwj closed pull request #6777: Unobfuscate chainstate data in CCoinsViewDB::GetStats (master...obfuscate_fix) https://github.com/bitcoin/bitcoin/pull/6777 03:32 < GitHub9> [bitcoin] laanwj pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/9caaf6ed22d0...a1d623da3ea4 03:32 < GitHub9> bitcoin/master 7d325b9 Johnathan Corgan: zmq: point API link to 4.0 as that is what we are conforming to [Trivial]... 03:32 < GitHub9> bitcoin/master a1d623d Wladimir J. van der Laan: Merge pull request #6810... 03:32 < GitHub120> [bitcoin] laanwj closed pull request #6810: zmq: point API link to 4.0 as that is what we are conforming to (master...zmq-api-link) https://github.com/bitcoin/bitcoin/pull/6810 03:35 -!- AtashiCon [arnavion@unaffiliated/arnavion] has quit [Ping timeout: 255 seconds] 03:36 -!- Arnavion [arnavion@unaffiliated/arnavion] has quit [Ping timeout: 240 seconds] 03:37 -!- AtashiCon [arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 03:37 -!- Arnavion [arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 03:38 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has quit [Ping timeout: 246 seconds] 03:38 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has joined #bitcoin-core-dev 03:58 -!- MarcoFalke [81bbf085@gateway/web/cgi-irc/kiwiirc.com/ip.129.187.240.133] has joined #bitcoin-core-dev 03:59 < GitHub146> [bitcoin] jmcorgan closed pull request #6811: Adds gpg key for jcorgan (671DA2F7) (master...add-gpg-key) https://github.com/bitcoin/bitcoin/pull/6811 04:23 < PRab> michagogo: I got it figured out. FYI, I'm using Windows as my host for a Virtualbox VM. 04:34 -!- MarcoFalke [81bbf085@gateway/web/cgi-irc/kiwiirc.com/ip.129.187.240.133] has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 04:55 -!- Palaver [~Palaver@c-24-20-191-68.hsd1.or.comcast.net] has joined #bitcoin-core-dev 04:59 -!- Palaver [~Palaver@c-24-20-191-68.hsd1.or.comcast.net] has quit [Remote host closed the connection] 05:17 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 05:17 < GitHub2> [bitcoin] CodeShark opened pull request #6816: BIP9: versionbits (master...versionbits) https://github.com/bitcoin/bitcoin/pull/6816 05:19 -!- molly [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 05:37 -!- MarcoFalke [81bbf085@gateway/web/cgi-irc/kiwiirc.com/ip.129.187.240.133] has joined #bitcoin-core-dev 05:51 -!- MarcoFalke [81bbf085@gateway/web/cgi-irc/kiwiirc.com/ip.129.187.240.133] has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 06:20 < GitHub151> [bitcoin] fanquake opened pull request #6817: [doc] Cleanup release-process documentation (master...patch-2) https://github.com/bitcoin/bitcoin/pull/6817 07:05 < GitHub118> [bitcoin] dajohi opened pull request #6818: script: Remove magic numbers (master...script_const) https://github.com/bitcoin/bitcoin/pull/6818 07:09 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Quit: Leaving.] 07:16 -!- dhill [~dhill@phengo.phobia.ms] has joined #bitcoin-core-dev 07:52 -!- fkhan [weechat@gateway/vpn/mullvad/x-cdzfoyypnealqplb] has quit [Ping timeout: 240 seconds] 07:58 -!- fanquake1 [~Adium@106-68-35-109.dyn.iinet.net.au] has quit [Quit: Leaving.] 08:02 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 08:05 -!- fkhan [weechat@gateway/vpn/mullvad/x-axplirbccmseankd] has joined #bitcoin-core-dev 08:37 -!- CodeShark_ [CodeShark@cpe-76-167-237-202.san.res.rr.com] has joined #bitcoin-core-dev 08:38 -!- CodeShark_ [CodeShark@cpe-76-167-237-202.san.res.rr.com] has quit [Client Quit] 08:38 -!- CodeShark_ [CodeShark@cpe-76-167-237-202.san.res.rr.com] has joined #bitcoin-core-dev 08:39 -!- CodeShark [CodeShark@cpe-76-167-237-202.san.res.rr.com] has quit [Ping timeout: 265 seconds] 08:39 -!- CodeShark_ [CodeShark@cpe-76-167-237-202.san.res.rr.com] has quit [Client Quit] 08:39 -!- CodeShark [CodeShark@cpe-76-167-237-202.san.res.rr.com] has joined #bitcoin-core-dev 08:39 -!- paveljanik [~paveljani@79-98-72-216.sys-data.com] has joined #bitcoin-core-dev 08:39 -!- paveljanik [~paveljani@79-98-72-216.sys-data.com] has quit [Changing host] 08:39 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has joined #bitcoin-core-dev 08:45 < cfields> jcorgan: did you get anywhere with the mingw static link? 08:58 -!- trippysalmon [~Rob@ip4da81ded.direct-adsl.nl] has quit [Ping timeout: 256 seconds] 09:09 -!- Guest60571 [~pigeons@94.242.209.214] has quit [Ping timeout: 272 seconds] 09:15 < CodeShark> is travis's hard disk full? 09:19 < cfields> CodeShark: probably a one-time thing. just force-push something to trigger a rebuild 09:22 -!- pigeons [~pigeons@94.242.209.214] has joined #bitcoin-core-dev 09:22 -!- pigeons is now known as Guest16175 09:29 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 09:32 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [] 09:57 < cfields> jcorgan: nm, looks like i got it building 10:01 < jcorgan> cfields: no, i knew if i waited long enough it would magically start working for you 10:02 < cfields> haha. i got curious after you asked yesterday and decided to take a peek 10:02 < cfields> so i got it building. but i'll leave it up to you to see if it actually works 10:02 < cfields> whoops, nope 10:03 < cfields> jcorgan: http://pastebin.com/raw.php?i=ScQ7yUAh 10:07 -!- maaku [~quassel@botbot.xen.prgmr.com] has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.] 10:07 -!- maaku [~quassel@botbot.xen.prgmr.com] has joined #bitcoin-core-dev 10:08 -!- maaku is now known as Guest18208 10:09 < jcorgan> hmm, no idea, will have to replicate here 10:11 < cfields> jcorgan: runs successfully with the assertion disabled 10:11 < cfields> PRing the build fixes in just a sec 10:13 -!- Guest18208 [~quassel@botbot.xen.prgmr.com] has quit [Remote host closed the connection] 10:16 < GitHub38> [bitcoin] theuni opened pull request #6819: WIP: force zeromq to work with static linking+mingw (master...zeromq-mingw) https://github.com/bitcoin/bitcoin/pull/6819 10:41 < GitHub45> [bitcoin] theuni opened pull request #6820: build: univalue subdir build fixups (master...univalue-build-fixes) https://github.com/bitcoin/bitcoin/pull/6820 10:50 -!- maaku__ [~quassel@botbot.xen.prgmr.com] has joined #bitcoin-core-dev 10:51 -!- maaku__ is now known as maaku 10:58 < GitHub58> [bitcoin] domob1812 opened pull request #6821: Avoid duplicate getheaders requests (master...no-duplicate-getheaders) https://github.com/bitcoin/bitcoin/pull/6821 11:00 < GitHub58> [bitcoin] MarcoFalke opened pull request #6822: [trivial] minrelaytxfee cleanup (master...MarcoFalke-2015-minRelayTxFeeCleanup) https://github.com/bitcoin/bitcoin/pull/6822 11:17 < michagogo> PRab: yeah, that's my setup too. LXC is nice in some ways 11:17 < michagogo> In other ways it's really annoying 11:17 < michagogo> Seems to break in assorted ways far more often than KVM 11:18 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 11:18 < michagogo> PRab: BTW, if you're using LXC, you ~need to upgrade the base image. 11:18 < michagogo> I mean, you could not, but then every build will take ages 11:19 < michagogo> The make-base-vm script, when you use LXC, creates a clean precise image... using only the precise repo 11:19 < michagogo> And not precise-security and precise-updates 11:21 < michagogo> PRab: with USE_LXC exported as 1, add the libexec dir in gitian to PATH and run these commands: https://www.irccloud.com/pastebin/vHn9M0LP/ 11:21 < GitHub8> [bitcoin] gmaxwell closed pull request #6792: Defaults UPNP to off when discovery is disabled. (master...upnp_off_on_ip) https://github.com/bitcoin/bitcoin/pull/6792 11:22 < michagogo> Note that you'll need to repeat that whenever there are more updates, because IIRC once you've done this process, gbuild fails if the image isn't fully up to date 11:24 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 11:28 < GitHub159> [bitcoin] domob1812 opened pull request #6823: [Trivial] Use constants for DB keys (master...txdb-constants) https://github.com/bitcoin/bitcoin/pull/6823 11:46 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Ping timeout: 244 seconds] 11:48 -!- Guest16175 [~pigeons@94.242.209.214] has quit [Ping timeout: 240 seconds] 11:50 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 11:56 -!- pigeons [~pigeons@94.242.209.214] has joined #bitcoin-core-dev 11:56 -!- pigeons is now known as Guest78786 12:03 -!- ParadoxSpiral [~ParadoxSp@p508B8A85.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 12:08 -!- Thireus1 [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 12:11 < michagogo> https://twitter.com/mikko/status/653923149537525761 12:13 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Ping timeout: 255 seconds] 12:15 < sipa> oh, i have another openssl horror story :p 12:16 < paveljanik> ;-)) 12:45 -!- Thireus1 [~Thireus@icy.thireus.fr] has quit [Remote host closed the connection] 12:47 -!- PaulCapestany [~PaulCapes@204.28.124.82] has quit [Quit: .] 12:47 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 12:49 -!- molly [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 12:51 -!- randy-waterhouse [~kiwigb@opentransactions/dev/randy-waterhouse] has quit [Ping timeout: 272 seconds] 12:51 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Ping timeout: 246 seconds] 12:52 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 12:52 -!- PaulCapestany [~PaulCapes@204.28.124.82] has joined #bitcoin-core-dev 12:56 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 13:05 -!- randy-waterhouse [~kiwigb@opentransactions/dev/randy-waterhouse] has joined #bitcoin-core-dev 13:12 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 13:15 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Ping timeout: 265 seconds] 13:15 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 13:16 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 13:18 -!- molly [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 13:21 -!- MarcoFalke [3e4bef15@gateway/web/cgi-irc/kiwiirc.com/ip.62.75.239.21] has joined #bitcoin-core-dev 13:35 -!- MarcoFalke [3e4bef15@gateway/web/cgi-irc/kiwiirc.com/ip.62.75.239.21] has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 14:03 -!- randy-waterhouse [~kiwigb@opentransactions/dev/randy-waterhouse] has quit [Ping timeout: 272 seconds] 14:12 -!- molly [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 14:15 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 14:19 * BlueMatt is now whoring out for review of #6722 14:53 -!- btcdrak [uid115429@gateway/web/irccloud.com/x-iuhxajaywihyawag] has quit [Quit: Connection closed for inactivity] 14:58 -!- btcdrak [uid115429@gateway/web/irccloud.com/x-dzjjmpwesctorqfv] has joined #bitcoin-core-dev 15:13 -!- randy-waterhouse [~kiwigb@opentransactions/dev/randy-waterhouse] has joined #bitcoin-core-dev 15:16 < instagibbs> related: what's the easiest way to blow up the mempool for testing purposes? My mempool is too small to test. 15:16 < instagibbs> Missed out on the 1GB mempool train 15:17 < BlueMatt> run testnet, get lots of coins from phantomcircuit and then just createrawtransaction in a loop creating OP_TRUE-no-signature txn? 15:18 < phantomcircuit> instagibbs, except do it with regtest 15:18 < BlueMatt> well , that 15:18 < BlueMatt> but then you have to "mine" blocks 15:18 < BlueMatt> with testnet you just make phantomcircuit give you 1000 tnbtc 15:20 < instagibbs> hah 15:20 < instagibbs> oh yeah, regtest fixes the block issue 15:21 < phantomcircuit> noooo my precious coins! 15:21 < gavinandresen> instagibbs: qa/rpc-test/smartfees.py generates a lot of transactions in -regtest mode, might be a good starting point for a mempool blowup test 15:22 < BlueMatt> phantomcircuit: I'll buy 1 million tnbtc for $0.01 15:22 < instagibbs> BlueMatt, that's a reset. Good job Matt. 15:22 < phantomcircuit> damn it 15:22 < phantomcircuit> now i have to mine them all again 15:22 < BlueMatt> lol, testnet4 here we go 15:22 < instagibbs> gavinandresen, thanks I'll take a look 15:27 -!- randy-waterhouse [~kiwigb@opentransactions/dev/randy-waterhouse] has left #bitcoin-core-dev [] 15:31 -!- randy-waterhouse [~kiwigb@opentransactions/dev/randy-waterhouse] has joined #bitcoin-core-dev 15:37 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 15:39 -!- molly [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 15:52 -!- randy-waterhouse [~kiwigb@opentransactions/dev/randy-waterhouse] has quit [Remote host closed the connection] 16:39 -!- sipa [~pw@unaffiliated/sipa1024] has left #bitcoin-core-dev [] 17:03 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has quit [Read error: Connection reset by peer] 17:10 -!- maaku [~quassel@botbot.xen.prgmr.com] has quit [Remote host closed the connection] 17:26 -!- maaku_ [~quassel@botbot.xen.prgmr.com] has joined #bitcoin-core-dev 17:27 -!- maaku_ is now known as maaku 17:31 -!- molly [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 17:34 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 17:44 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-owrikmonxigidqsm] has quit [Quit: Connection closed for inactivity] 18:01 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 18:09 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 18:11 -!- molly [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 18:15 -!- molly [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 18:18 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 18:40 -!- belcher [~user@unaffiliated/belcher] has quit [Quit: Leaving] 18:41 -!- d_t [~textual@c-50-136-139-144.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 19:12 -!- maaku [~quassel@botbot.xen.prgmr.com] has quit [Remote host closed the connection] 19:16 -!- maaku [~quassel@botbot.xen.prgmr.com] has joined #bitcoin-core-dev 19:16 -!- maaku is now known as Guest88900 19:29 < gmaxwell> looks like github may be compromised or badly broken: https://github.com/bitcoin/bitcoin/commits/master?author=saracen 19:34 < midnightmagic> i thought that was an artifact of the conversion process 19:37 < phantomcircuit> gmaxwell, it's always been like that 19:37 < phantomcircuit> (i had the same thought to once) 19:38 < midnightmagic> it's consistent with my (extensive) experience with scm->scm conversion tools that were badly-written 19:39 < gmaxwell> hard to see how thats possible, since that account is much newer than the commits in question. 19:39 < phantomcircuit> gmaxwell, timestamps on commits are not verified by github 19:39 < CodeShark> the commits don't have to have the right time 19:39 < CodeShark> you can set your clock back a decade and commit 19:40 < gmaxwell> thats not my point. I mean it couldn't have _always_ been that way because that account didn't exist always. :) 19:40 < midnightmagic> argh does github order by date or by git log order..? 19:40 < CodeShark> by date - it sucks 19:43 < midnightmagic> whoah!! 19:43 < gmaxwell> yea, okay. I reproduced the stupidity. 19:45 < gmaxwell> https://github.com/bitcoin/bitcoin/commits/master?author=gmaxwell&page=6 < see bottom 19:46 < gmaxwell> first commit in bitcoin core repo is now from me. 20:13 -!- moli [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 20:13 < Luke-Jr> [02:37:19] gmaxwell, it's always been like that <-- +1 20:14 < gmaxwell> Thats not actually true. 20:14 < gmaxwell> Unless you think it was also always like this: https://github.com/bitcoin/bitcoin/commits/master?page=264 20:14 < Luke-Jr> I don't remember a time where the contributors page didn't bug that way 20:15 < Luke-Jr> gmaxwell: it was, but with a different user 20:15 < Luke-Jr> (disclaimer: I did not view that exact page before) 20:16 < gmaxwell> perhaps we should change the merge script to refuse to merge commits that don't have dots in their email addresses. 20:16 -!- molly [~molly@unaffiliated/molly] has quit [Ping timeout: 240 seconds] 20:16 < Luke-Jr> do we have any recent like that? 20:16 < gmaxwell> Luke-Jr: it was messed up like that from whatever moment saracen added sirius-m@1a98c847-1fd6-4fd8-948a-caf3550aa51b to their email list. 20:17 < gmaxwell> Thus my latest example, I just went and reproduced using sirius-m@1a98c847-1fd6-4fd8-948a-caf3550aa51b 20:17 < Luke-Jr> gmaxwell: sure, but that was a long time ago 20:17 < gmaxwell> oops I ment s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b in the penultimate case. 20:18 < Luke-Jr> I noticed it at least as early as when we were contacting devs to sign that joint letter 20:18 < gmaxwell> in any case, I went and reserved all the other dotless names in the history. .. looks like it only lets a single github user claim them, first come first serve. 20:18 < Luke-Jr> pretty sure I had seen it before then, though 20:18 < Luke-Jr> gmaxwell: ☹ now GitHub shows bogus stats for you 20:18 < Luke-Jr> at least ignoring saracen was easy 20:18 < gmaxwell> Luke-Jr: nah, it shows up as seperate users. 20:18 < Luke-Jr> O.o 20:19 < Luke-Jr> not on https://github.com/bitcoin/bitcoin/graphs/contributors AFAIK 20:28 -!- CodeShark [CodeShark@cpe-76-167-237-202.san.res.rr.com] has quit [Ping timeout: 240 seconds] 20:51 -!- Guest88900 [~quassel@botbot.xen.prgmr.com] has quit [Remote host closed the connection] 20:56 -!- maaku [~quassel@botbot.xen.prgmr.com] has joined #bitcoin-core-dev 20:56 -!- maaku is now known as Guest71817 20:57 -!- Guest71817 is now known as maaku 20:57 -!- ParadoxSpiral [~ParadoxSp@p508B8A85.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 20:58 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Ping timeout: 264 seconds] 20:59 -!- 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] 22:02 -!- phantomcircuit [~phantomci@strateman.ninja] has quit [Quit: quit] 22:03 -!- phantomcircuit [~phantomci@strateman.ninja] has joined #bitcoin-core-dev 22:03 -!- phantomcircuit is now known as Guest96009 22:13 -!- Guest96009 [~phantomci@strateman.ninja] has quit [Quit: quit] 22:14 -!- phantomcircuit_ [~phantomci@strateman.ninja] has joined #bitcoin-core-dev 22:20 -!- Naphex [~naphex@unaffiliated/naphex] has quit [Ping timeout: 240 seconds] 22:27 -!- Naphex [~naphex@128.140.224.218] has joined #bitcoin-core-dev 22:29 -!- phantomcircuit_ is now known as phantomcircuit 22:44 -!- Thireus [~Thireus@icy.thireus.fr] has joined #bitcoin-core-dev 22:59 < wumpus> have any problems with 0.11.1rc2 or 0.10.3rc2 been reported? if not, I'd like to make them final today 23:00 < gmaxwell> None that I'm aware of. 23:11 -!- tripleslash [~triplesla@unaffiliated/imsaguy] has joined #bitcoin-core-dev 23:30 -!- Thireus [~Thireus@icy.thireus.fr] has quit [Quit: Leaving.] 23:36 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-klojokmubmtcrosw] has joined #bitcoin-core-dev 23:57 -!- malte [~malte@alkaid.uberspace.de] has quit [Ping timeout: 250 seconds]