--- Day changed Tue Feb 23 2016 00:07 < jonasschnelli> BlueMatt: which commit was not signed? 00:07 < jonasschnelli> The one you referred is https://github.com/jonasschnelli/bitcoin/commit/453c567? 00:13 < jonasschnelli> TZander: marked for BP 00:14 < btcdrak> so long as merge commits and tags are signed, I dont see a problem. 00:18 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 00:21 < jonasschnelli> BlueMatt: I can't find a unsigned merge commit. 00:32 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-cinradtdnguajzjt] has joined #bitcoin-core-dev 00:41 -!- p15 [~p15@4.91.145.64.client.static.strong-tk2.bringover.net] has joined #bitcoin-core-dev 00:41 -!- cjcj [82ebca3a@gateway/web/freenode/ip.130.235.202.58] has joined #bitcoin-core-dev 00:42 -!- p15_ [~p15@121.91.145.64.client.static.strong-tk2.bringover.net] has quit [Ping timeout: 252 seconds] 01:01 < michagogo> cfields: welcome back! 01:05 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 01:12 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has quit [Quit: Leaving] 01:14 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:32 -!- wallet42 [~wallet42@unaffiliated/wallet42] has quit [Quit: Leaving.] 01:34 < JackH> can we download 0.12 yet? 01:40 < jonasschnelli> JackH: you need to download the sources and compile it yourself. 01:40 < jonasschnelli> Or, you can take a risk and download my 0.12.0 build: https://bitcoin.jonasschnelli.ch/releasebuilds/v0.12.0/ 01:40 < jonasschnelli> But compare the gitian signatures first. 01:41 < JackH> who are we waiting for? cfields still? 01:42 < jonasschnelli> Yes. He needs to sign the binaries with the OSX/Windows code signing key. 01:42 < wumpus> he has uploaded signatures 01:43 < wumpus> so just a matter of waiting until 3+ people have attached then and pushed to the repo 01:45 -!- danielsocials [~quassel@221.220.128.205] has joined #bitcoin-core-dev 01:46 -!- xiangfu [~xiangfu@111.198.29.53] has quit [Remote host closed the connection] 01:55 -!- danielsocials [~quassel@221.220.128.205] has quit [Ping timeout: 248 seconds] 02:03 -!- jtimon [~quassel@35.31.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 02:07 -!- fanquake [~Adium@unaffiliated/fanquake] has joined #bitcoin-core-dev 02:08 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has quit [Remote host closed the connection] 02:08 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has joined #bitcoin-core-dev 02:08 < JackH> is ZeroMQ a stand alone wrapper for TCP, or does it require the daemon to run? 02:14 < jonasschnelli> JackH: it's a flexible communication/messaging protocol, it does not require a daemon 02:15 < JackH> yes I read about it, but how exactly do we use it together with bitcoin? do you bind it to 8333? 02:15 < jonasschnelli> bitcoind just tries to broadcast blocks/txes to the configured ZMQ url 02:15 < jonasschnelli> https://github.com/bitcoin/bitcoin/blob/master/doc/zmq.md 02:16 < jonasschnelli> You use something like: bitcoind -zmqpubhashtx=tcp://127.0.0.1:28332 02:16 < jonasschnelli> and you can listen (with another application) on tcp://127.0.0.1:28332 02:17 < fanquake> wumpus PR'd my signed sigs 02:18 < wumpus> thanks, merged 02:19 -!- fanquake [~Adium@unaffiliated/fanquake] has quit [Quit: Leaving.] 02:19 < JackH> ahh now I get how its put together, thanks jonasschnelli 02:19 < JackH> order is back into my world 02:19 < jtimon> JackH: the zmq req/resp pattern has not been implemented as an alternative to the RPC interface if you were wondering that 02:20 < jtimon> ok, never mind then 02:20 < JackH> gotcha 02:20 < JackH> yeah this was the confusing point 02:20 < JackH> if it was alternate to RPC or not 02:20 < jonasschnelli> It's not an alternative for RPC. 02:20 < jonasschnelli> at the moment, it's more a "push-channel" for new blocks/transactions 02:21 < jtimon> I mean, we could do that too now that the zmq optional dependency is there, but nobody has coded it yet 02:21 < jonasschnelli> Alternative for the -blocknotify 02:21 -!- randy-waterhouse [~kiwigb@opentransactions/dev/randy-waterhouse] has quit [Quit: Leaving.] 02:21 < jonasschnelli> The ugly thing with RPC is, you can get informed when a new block arrives without endless pulling. 02:22 < jonasschnelli> Another solution would be long-poll 02:22 < jonasschnelli> (over RPC) 02:24 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 02:25 < jtimon> I just meant a zmq equivalent of the whole RPC API (using zmq's req/resp pattern), I'm not sure we're still talking about the same thing 02:28 < jonasschnelli> jtimon: Yes. This would work... but where would be the benefits? 02:30 < jtimon> maybe interacting with the zmq API is more convenient to some than interacting with the RPC? (ie like the "rest" API may be more convenient than the RPC?). To be clear, I'm not sure it's worth doing, just saying that it could be done 02:31 < wumpus> no, that would be overkill, we already have RPC and rest, no need to add another way to query. zmq is meant for notification only 02:31 < wumpus> (zmq in bitcoin core, I mean) 02:32 < jtimon> yeah, probably not worth it, but I thought that may be what JackH was looking for, that's all 02:32 < jtimon> s/looking for/ expecting about zmq in bitcoin core 02:33 < JackH> I was just looking to understand how it fit 02:33 < wumpus> and I don't think anything can beat rest with regard to ease of API usage 02:35 < wumpus> jtimon: yes, agreed, it would be possible (I think there's even a pull around somewhere, one of the first zmq pulls, that enabled command submission through it) 02:50 < jonasschnelli> 3xgitian sigs available now: https://github.com/bitcoin/gitian.sigs/pull/322 02:50 < jonasschnelli> x4: https://github.com/bitcoin/gitian.sigs/pull/323 02:52 -!- danielsocials [~quassel@221.220.128.205] has joined #bitcoin-core-dev 02:52 < btcdrak> We are go go! 02:55 -!- qwdwqfeww [4a473ea6@gateway/web/freenode/ip.74.71.62.166] has joined #bitcoin-core-dev 02:57 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 02:57 -!- gamersg [745862b0@gateway/web/freenode/ip.116.88.98.176] has joined #bitcoin-core-dev 02:58 < JackH> \o/ 02:59 < JackH> this release will produce about 120 conspiracy posts on reddit 02:59 < michagogo> Fanquake: you messed up your windows sig 03:05 -!- danielsocials [~quassel@221.220.128.205] has quit [Ping timeout: 255 seconds] 03:36 < gamersg> regarding the reduced disk usage for wallets in 0.12, will this automatically reduce file size of older wallets created in prior versions? 03:36 < wumpus> no, nothing will happen automatically 03:37 < wumpus> it doesn't matter whether it is an old or new wallet though, the instructions for enabling pruning are the same 03:37 < gamersg> wumpus: im not talking about blockchain 03:38 < gamersg> wumpus: the wallet.dat file 03:38 < wumpus> you mean removing the merkle proofs? I don't know, may require database compaction or such for it actually to reduce the size of the dat 03:39 < gamersg> oh looks like the release notes were talking about pruning 03:39 < JackH> cool gui on 0.12 03:39 < gamersg> im quite sure i read somewhere that txn proofs were being stored in the .dat file which are unnecessary now 03:43 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has quit [Remote host closed the connection] 03:57 -!- slackircbridge [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 03:59 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 04:01 -!- qwdwqfeww [4a473ea6@gateway/web/freenode/ip.74.71.62.166] has left #bitcoin-core-dev [] 04:01 -!- slackircbridge [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 04:02 -!- danielsocials [~quassel@221.220.128.205] has joined #bitcoin-core-dev 04:07 -!- danielsocials [~quassel@221.220.128.205] has quit [Ping timeout: 240 seconds] 04:07 -!- slackircbridge1 [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 04:07 -!- qewqewq [4a473ea6@gateway/web/freenode/ip.74.71.62.166] has joined #bitcoin-core-dev 04:08 -!- slackircbridge1 [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 04:08 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 04:12 -!- slackircbridge [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 04:13 -!- qewqewq [4a473ea6@gateway/web/freenode/ip.74.71.62.166] has left #bitcoin-core-dev [] 04:18 < PRab> How did we get so many gitian signed builds of 0.12.0 so quickly? 04:18 < btcdrak> haha, everyone was itching for the release. 04:18 < PRab> The detached sigs were posted at 2am (eastern) and now just 5 hours later there are enough merged to release. 04:19 < PRab> I love that we were able to release so quickly, but the timing is almost unnaturally tight. 04:23 < btcdrak> PRab: *shrug*, all the QA and deterministic processes were fulfilled. 04:23 < wumpus> in constrast to the build, attaching signatures goes really fast, ~10 min at most for both Win+OSX 04:24 < wumpus> (and most of that is VM setup and teardown) 04:24 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 04:25 -!- qweqwrqw [4a473ea6@gateway/web/freenode/ip.74.71.62.166] has joined #bitcoin-core-dev 04:25 < PRab> agreed. I wonder where most of the gitian builders are. In the USA, that was all during the middle of the night. For people elsewhere, it makes perfect sense. 04:26 < wumpus> yea, lots of devs from Europe 04:26 < btcdrak> wumpus: so where is the party? we need a holiday now 04:27 < PRab> Either way, cool that it is officially released!! 04:27 < PRab> Keep up the good work. 04:28 -!- qweqwrqw [4a473ea6@gateway/web/freenode/ip.74.71.62.166] has quit [Changing host] 04:28 -!- qweqwrqw [4a473ea6@unaffiliated/mesmer] has joined #bitcoin-core-dev 04:28 -!- qweqwrqw [4a473ea6@unaffiliated/mesmer] has quit [Changing host] 04:28 -!- qweqwrqw [4a473ea6@gateway/web/freenode/ip.74.71.62.166] has joined #bitcoin-core-dev 04:29 -!- qweqwrqw [4a473ea6@gateway/web/freenode/ip.74.71.62.166] has quit [Quit: Page closed] 04:29 < slackircbridge> Tor is on by default now, right? 04:29 -!- mesmer [~mesmer@unaffiliated/mesmer] has joined #bitcoin-core-dev 04:30 < PRab> laudam, theymos, and achow101 probably should add their gpg key to /contrib/gitian-downloader 04:31 -!- slackircbridge [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 04:33 < GitHub107> [bitcoin] laanwj pushed 1 new commit to master: https://github.com/bitcoin/bitcoin/commit/a08c41dfc23234064da322159652b44684df9375 04:33 < GitHub107> bitcoin/master a08c41d Wladimir J. van der Laan: doc: include post-mortem fixes to 0.12.0 release notes... 04:34 < btcdrak> lol, "post-mortem". 04:34 < wumpus> :) 04:41 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 04:44 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has joined #bitcoin-core-dev 04:50 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 04:50 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has quit [Ping timeout: 240 seconds] 04:52 -!- slackircbridge [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 04:56 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 04:58 -!- slackircbridge [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 04:58 < michagogo> 14:23:55 in constrast to the build, attaching signatures goes really fast, ~10 min at most for both Win+OSX 04:59 < michagogo> If you use LXC and -i, it's really fast 04:59 < michagogo> Mine probably completed the whole process within 3-5 minutes 05:02 < michagogo> (That's the entire script, including updating the git repos, installing the packages, building, signing, committing, pushing, and PRing) 05:10 < wumpus> nice 05:14 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 05:14 -!- slackircbridge [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 05:15 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 05:27 -!- gevs [~greg@unaffiliated/gevs] has quit [Ping timeout: 252 seconds] 05:27 -!- p15x_ [~p15x@106.91.145.64.client.static.strong-tk2.bringover.net] has joined #bitcoin-core-dev 05:29 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 05:30 -!- p15x [~p15x@48.91.145.64.client.static.strong-tk2.bringover.net] has quit [Ping timeout: 276 seconds] 05:31 -!- slackircbridge [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 05:31 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 05:32 < btcdrak> . 05:57 -!- Chris_Stewart_5 [~Chris_Ste@104.156.228.193] has joined #bitcoin-core-dev 06:03 -!- gevs [~greg@ip-80-236-216-202.dsl.scarlet.be] has joined #bitcoin-core-dev 06:03 -!- gevs [~greg@ip-80-236-216-202.dsl.scarlet.be] has quit [Changing host] 06:03 -!- gevs [~greg@unaffiliated/gevs] has joined #bitcoin-core-dev 06:04 -!- danielsocials [~quassel@221.220.128.205] has joined #bitcoin-core-dev 06:05 -!- slackircbridge [~slackircb@45.55.41.36] has quit [Remote host closed the connection] 06:05 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 06:09 -!- danielsocials [~quassel@221.220.128.205] has quit [Ping timeout: 244 seconds] 06:13 -!- gevs [~greg@unaffiliated/gevs] has quit [Remote host closed the connection] 06:14 -!- gevs [~greg@unaffiliated/gevs] has joined #bitcoin-core-dev 06:22 -!- p15x_ [~p15x@106.91.145.64.client.static.strong-tk2.bringover.net] has quit [Ping timeout: 240 seconds] 06:22 -!- p15 [~p15@4.91.145.64.client.static.strong-tk2.bringover.net] has quit [Ping timeout: 255 seconds] 06:27 -!- gamersg [745862b0@gateway/web/freenode/ip.116.88.98.176] has quit [Quit: Page closed] 06:35 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 06:39 < instagibbs> wumpus, can I submit another post-mortem? :) 06:41 -!- goregrind [~goregrind@unaffiliated/goregrind] has quit [Read error: Connection reset by peer] 06:41 -!- goregrind [~goregrind@unaffiliated/goregrind] has joined #bitcoin-core-dev 06:43 < wumpus> instagibbs: sure, although the longer you wait the less sense it makes (and you'll need to apply to both bitcoin.org and bitcoin now) 06:45 < instagibbs> I asked earlier and didn't get a clear answer :/ 06:46 < instagibbs> I'll send something up 06:48 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Remote host closed the connection] 06:54 < GitHub108> [bitcoin] instagibbs opened pull request #7581: Corrections of 0.12 release notes (master...patch-2) https://github.com/bitcoin/bitcoin/pull/7581 07:06 -!- danielsocials [~quassel@221.220.128.205] has joined #bitcoin-core-dev 07:07 -!- Cory [~C@unaffiliated/cory] has quit [Ping timeout: 240 seconds] 07:09 -!- Pasha [~C@unaffiliated/cory] has joined #bitcoin-core-dev 07:10 -!- danielsocials [~quassel@221.220.128.205] has quit [Ping timeout: 248 seconds] 07:11 -!- treehug88 [~textual@static-108-30-103-59.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 07:16 -!- Pasha is now known as Cory 07:48 -!- zooko [~user@c-73-217-16-2.hsd1.co.comcast.net] has joined #bitcoin-core-dev 07:54 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has joined #bitcoin-core-dev 08:21 -!- Chris_Stewart_5 [~Chris_Ste@104.156.228.193] has quit [Ping timeout: 250 seconds] 08:26 -!- teward [teward@ubuntu/member/teward] has quit [Ping timeout: 250 seconds] 08:30 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Remote host closed the connection] 08:34 -!- teward [teward@ubuntu/member/teward] has joined #bitcoin-core-dev 08:44 -!- jamesob [~job_@50-201-192-26-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 08:44 -!- jtimon [~quassel@35.31.134.37.dynamic.jazztel.es] has quit [Ping timeout: 248 seconds] 08:47 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has joined #bitcoin-core-dev 08:51 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has quit [Ping timeout: 240 seconds] 08:52 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 08:55 -!- jtimon [~quassel@35.31.134.37.dynamic.jazztel.es] has joined #bitcoin-core-dev 08:58 -!- Don_John [~Don@249-223-114-134.nat.resnet.nau.edu] has joined #bitcoin-core-dev 09:02 -!- jtimon [~quassel@35.31.134.37.dynamic.jazztel.es] has quit [Remote host closed the connection] 09:07 -!- danielsocials [~quassel@221.220.128.205] has joined #bitcoin-core-dev 09:17 -!- davec [~davec@cpe-24-243-251-52.hot.res.rr.com] has quit [Ping timeout: 252 seconds] 09:18 -!- danielsocials [~quassel@221.220.128.205] has quit [Ping timeout: 240 seconds] 09:25 -!- murch [~murch@p4FE3A62D.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 09:30 -!- gevs [~greg@unaffiliated/gevs] has quit [Remote host closed the connection] 09:37 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has joined #bitcoin-core-dev 09:41 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 09:43 < zooko> How was the bitcoin-dev mailing list GNU Mailman configured to hold all postings for moderation? 09:43 < zooko> I'd like to try the same thing on zcash-dev. 09:44 -!- davec [~davec@cpe-24-243-251-52.hot.res.rr.com] has joined #bitcoin-core-dev 09:53 -!- murch [~murch@p4FE3A62D.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 10:05 -!- treehug88 [~textual@static-108-30-103-59.nycmny.fios.verizon.net] has quit [Ping timeout: 252 seconds] 10:13 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has quit [Quit: laurentmt] 10:21 -!- Don_John [~Don@249-223-114-134.nat.resnet.nau.edu] has quit [Ping timeout: 244 seconds] 10:34 -!- zooko [~user@c-73-217-16-2.hsd1.co.comcast.net] has quit [Ping timeout: 250 seconds] 10:45 < instagibbs> ^^^ kanzure 10:48 < kanzure> instagibbs: thank you 10:48 < kanzure> zooko: it's manual, sadly. the mailing list that moderated emails are sent to is configured to only allow email from bitcoin-dev-owner@lists.linuxfoundation.org, that's the only configuration detail. when rejecting email, the moderator has to type bitcoin-dev-moderation@lists.ozlabs.org into the bitcoin-dev moderation queue interface. 10:49 < kanzure> zooko: (and also check a box to forward the rejected email) 10:50 < kanzure> instagibbs: slack notifications for bitcoin irc mentions is pretty cool, it works. 10:50 < kanzure> cc btcdrak 10:55 < btcdrak> kanzure: so it's setup as one way because I am worried about moderation difficulties: if someone spams the Slack channel, IRC moderators can only ban the bot, which would then cut the feed. 10:55 < GitHub47> [bitcoin] infertux opened pull request #7583: [doc] Fix typos (master...fix-typo) https://github.com/bitcoin/bitcoin/pull/7583 10:56 < kanzure> btcdrak: yep makes sense. still, this works out pretty well. 10:57 < btcdrak> kanzure: it certainly improves visibility. 10:57 < instagibbs> can I ping myself on slack? instagibbs 10:57 < btcdrak> heh 10:57 < kanzure> yes 10:57 < instagibbs> (sorry, OT...) 10:57 < btcdrak> ping btcdrak 10:58 < kanzure> i already mentioned this in -dev btw :P 10:59 < instagibbs> I was somehow logged out of that room 10:59 < instagibbs> :) 11:00 < btcdrak> The IRC channel bridges are also logged at http://bitcoincore.slackarchive.io/ 11:05 -!- wallet42 [~wallet42@unaffiliated/wallet42] has joined #bitcoin-core-dev 11:15 -!- danielsocials [~quassel@221.220.128.205] has joined #bitcoin-core-dev 11:28 -!- danielsocials [~quassel@221.220.128.205] has quit [Ping timeout: 276 seconds] 11:33 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has quit [Quit: Leaving.] 11:41 -!- treehug88 [~textual@static-108-30-103-59.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 11:46 -!- Don_John [~Don@249-223-114-134.nat.resnet.nau.edu] has joined #bitcoin-core-dev 12:04 -!- skyraider_ [uid41097@gateway/web/irccloud.com/x-hmaqrxemtpofvtwd] has joined #bitcoin-core-dev 12:08 -!- Guyver2_ [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 12:11 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Ping timeout: 260 seconds] 12:11 -!- Guyver2_ is now known as Guyver2 12:13 -!- wangchun [~wangchun@li414-193.members.linode.com] has quit [Ping timeout: 240 seconds] 12:14 -!- wangchun [~wangchun@li414-193.members.linode.com] has joined #bitcoin-core-dev 12:15 -!- jamesob [~job_@50-201-192-26-static.hfc.comcastbusiness.net] has quit [Ping timeout: 240 seconds] 12:32 -!- murch [~murch@p4FE3A62D.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 12:33 -!- treehug88 [~textual@static-108-30-103-59.nycmny.fios.verizon.net] has quit [Read error: Connection reset by peer] 13:02 -!- instagibbs [~instagibb@pool-100-15-134-80.washdc.fios.verizon.net] has quit [Ping timeout: 264 seconds] 13:21 -!- mm_1 [bnc33@bnc33.nitrado.net] has quit [Ping timeout: 248 seconds] 13:25 -!- danielsocials [~quassel@221.220.128.205] has joined #bitcoin-core-dev 13:25 -!- jamesob [~job_@152.179.131.162] has joined #bitcoin-core-dev 13:29 -!- danielsocials [~quassel@221.220.128.205] has quit [Ping timeout: 252 seconds] 13:34 -!- instagibbs [~instagibb@pool-100-15-134-80.washdc.fios.verizon.net] has joined #bitcoin-core-dev 13:38 -!- mm_1 [bnc33@bnc33.nitrado.net] has joined #bitcoin-core-dev 13:44 -!- mm_1 [bnc33@bnc33.nitrado.net] has quit [Ping timeout: 276 seconds] 13:49 -!- instagibbs [~instagibb@pool-100-15-134-80.washdc.fios.verizon.net] has quit [Ping timeout: 240 seconds] 13:49 -!- zooko [~user@c-73-229-199-227.hsd1.co.comcast.net] has joined #bitcoin-core-dev 14:00 -!- mm_1 [bnc33@bnc33.nitrado.net] has joined #bitcoin-core-dev 14:05 -!- instagibbs [~instagibb@pool-100-15-134-80.washdc.fios.verizon.net] has joined #bitcoin-core-dev 14:20 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has joined #bitcoin-core-dev 14:24 -!- BlueMatt [~BlueMatt@unaffiliated/bluematt] has quit [Excess Flood] 14:26 -!- Luke-Jr [~luke-jr@unaffiliated/luke-jr] has quit [Read error: Connection reset by peer] 14:26 -!- danielsocials [~quassel@221.220.128.205] has joined #bitcoin-core-dev 14:27 -!- BlueMatt [~BlueMatt@unaffiliated/bluematt] has joined #bitcoin-core-dev 14:30 -!- schmidty [~schmidty@unaffiliated/schmidty] has joined #bitcoin-core-dev 14:32 -!- danielsocials [~quassel@221.220.128.205] has quit [Ping timeout: 240 seconds] 14:53 -!- Evel-Knievel [~Evel-Knie@d5152f744.static.telenet.be] has quit [Ping timeout: 264 seconds] 14:57 -!- Evel-Knievel [~Evel-Knie@d5152f744.static.telenet.be] has joined #bitcoin-core-dev 14:58 -!- Netsplit *.net <-> *.split quits: bsm1175321, gijensen, teward, zxzzt, [b__b], mm_1, Guest36311, raedah, Arnavion, aj, (+88 more, use /NETSPLIT to show all of them) 14:58 -!- Amnez777 [~Amnez777@unaffiliated/amnez777] has quit [Max SendQ exceeded] 15:01 -!- blkdb [~blkdb@2a01:4f8:140:1407::2] has joined #bitcoin-core-dev 15:01 -!- jonasschnelli [~jonasschn@unaffiliated/jonasschnelli] has joined #bitcoin-core-dev 15:01 -!- lecusemble [~lecusembl@f9beb4d9.violates.me] has joined #bitcoin-core-dev 15:01 -!- lahwran [~lahwran@python/site-packages/lahwran] has joined #bitcoin-core-dev 15:01 -!- harding [~harding@mail.dtrt.org] has joined #bitcoin-core-dev 15:01 -!- kinlo [peter@unaffiliated/kinlo] has joined #bitcoin-core-dev 15:01 -!- jyap [~jyap@unaffiliated/jyap] has joined #bitcoin-core-dev 15:01 -!- ibrightly [sid113387@gateway/web/irccloud.com/x-jioxrsdcpmxbsorf] has joined #bitcoin-core-dev 15:01 -!- dagurval [~dagurval@188.166.108.147] has joined #bitcoin-core-dev 15:01 -!- arichnad [~arichnad@c-73-128-149-185.hsd1.va.comcast.net] has joined #bitcoin-core-dev 15:01 -!- Madars [~null@unaffiliated/madars] has joined #bitcoin-core-dev 15:01 -!- Aleph0 [~User@unaffiliated/amphetamine] has joined #bitcoin-core-dev 15:01 -!- JackH [~Jack@host-2-103-125-146.as13285.net] has joined #bitcoin-core-dev 15:01 -!- OxADADA [~OxADADA@alumni-linux.ccs.neu.edu] has joined #bitcoin-core-dev 15:01 -!- Evel-Knievel [~Evel-Knie@d5152f744.static.telenet.be] has joined #bitcoin-core-dev 15:01 -!- haakonn [~haakonn@pdpc/supporter/active/haakonn] has joined #bitcoin-core-dev 15:01 -!- trippysalmon [~trippy@cyberdynesys.org] has joined #bitcoin-core-dev 15:01 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 15:01 -!- CodeShark [sid126576@gateway/web/irccloud.com/x-yrgoubinsswtnauf] has joined #bitcoin-core-dev 15:01 -!- Taek [~quassel@2001:41d0:1:472e::] has joined #bitcoin-core-dev 15:01 -!- lclc [~lclc@unaffiliated/lclc] has joined #bitcoin-core-dev 15:01 -!- cfields [~quassel@unaffiliated/cfields] has joined #bitcoin-core-dev 15:01 -!- sipa [~pw@2a02:348:86:3011::1] has joined #bitcoin-core-dev 15:01 -!- afk11 [~afk11@unaffiliated/afk11] has joined #bitcoin-core-dev 15:01 -!- adam3us [~adam3us@unaffiliated/adam3us] has joined #bitcoin-core-dev 15:01 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-cinradtdnguajzjt] has joined #bitcoin-core-dev 15:01 -!- davec [~davec@cpe-24-243-251-52.hot.res.rr.com] has joined #bitcoin-core-dev 15:01 -!- skyraider_ [uid41097@gateway/web/irccloud.com/x-hmaqrxemtpofvtwd] has joined #bitcoin-core-dev 15:01 -!- jamesob [~job_@152.179.131.162] has joined #bitcoin-core-dev 15:01 -!- instagibbs [~instagibb@pool-100-15-134-80.washdc.fios.verizon.net] has joined #bitcoin-core-dev 15:01 -!- petertodd [~pete@ec2-52-5-185-120.compute-1.amazonaws.com] has joined #bitcoin-core-dev 15:01 -!- dgenr8 [~dgenr8@unaffiliated/dgenr8] has joined #bitcoin-core-dev 15:01 -!- devrandom [~devrandom@unaffiliated/niftyzero1] has joined #bitcoin-core-dev 15:01 -!- mr_burdell [~mr_burdel@unaffiliated/mr-burdell/x-7609603] has joined #bitcoin-core-dev 15:01 -!- murr4y [murray@kvikshaug.no] has joined #bitcoin-core-dev 15:01 -!- [b__b] [~b__b]@ec2-54-85-45-223.compute-1.amazonaws.com] has joined #bitcoin-core-dev 15:01 -!- helo [~helo@unaffiliated/helo] has joined #bitcoin-core-dev 15:01 -!- Lightsword [~Lightswor@2604:a880:1:20::1d3:9001] has joined #bitcoin-core-dev 15:01 -!- viderizer2 [~viderizer@qux.fi] has joined #bitcoin-core-dev 15:01 -!- eragmus [sid136308@gateway/web/irccloud.com/x-zilqwbgvxaegoyrx] has joined #bitcoin-core-dev 15:01 -!- lightningbot [supybot@2400:8900::f03c:91ff:fedf:3a06] has joined #bitcoin-core-dev 15:01 -!- jl2012 [uid133844@gateway/web/irccloud.com/x-kksxdaehqbxcqnba] has joined #bitcoin-core-dev 15:01 -!- zxzzt [~prod@unaffiliated/sdaftuar] has joined #bitcoin-core-dev 15:01 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 15:01 -!- teward [teward@ubuntu/member/teward] has joined #bitcoin-core-dev 15:01 -!- zibbo [~zibbo@static.173.197.47.78.clients.your-server.de] has joined #bitcoin-core-dev 15:01 -!- arubi [~ese168@unaffiliated/arubi] has joined #bitcoin-core-dev 15:01 -!- limpkin [sid20909@gateway/web/irccloud.com/x-scogzhmmpvyamyfg] has joined #bitcoin-core-dev 15:01 -!- zmanian_ [sid113594@gateway/web/irccloud.com/x-msmqlbvvmfalunng] has joined #bitcoin-core-dev 15:01 -!- btcdrak [uid115429@gateway/web/irccloud.com/x-jexwtuvnmjbbudgg] has joined #bitcoin-core-dev 15:01 -!- bad_duck [~arthur@2001:bc8:c087:1001::1] has joined #bitcoin-core-dev 15:01 -!- michagogo [uid14316@wikia/Michagogo] has joined #bitcoin-core-dev 15:01 -!- BlueMatt [~BlueMatt@unaffiliated/bluematt] has joined #bitcoin-core-dev 15:01 -!- mm_1 [bnc33@bnc33.nitrado.net] has joined #bitcoin-core-dev 15:01 -!- gijensen [~gijensen@gijensen.xyz] has joined #bitcoin-core-dev 15:02 -!- Don_John [~Don@249-223-114-134.nat.resnet.nau.edu] has joined #bitcoin-core-dev 15:02 -!- schmidty [~schmidty@unaffiliated/schmidty] has joined #bitcoin-core-dev 15:02 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has joined #bitcoin-core-dev 15:02 -!- slackircbridge [~slackircb@45.55.41.36] has joined #bitcoin-core-dev 15:02 -!- windsok [~windsok@45.63.59.8] has joined #bitcoin-core-dev 15:02 -!- go1111111 [~go1111111@104.200.154.69] has joined #bitcoin-core-dev 15:02 -!- raedah [~raedah@172.58.33.159] has joined #bitcoin-core-dev 15:02 -!- cj [~cjac@104.36.247.28] has joined #bitcoin-core-dev 15:02 -!- evoskuil [~evoskuil@c-73-225-134-208.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 15:02 -!- Naphex [~naphex@unaffiliated/naphex] has joined #bitcoin-core-dev 15:03 -!- Amnez777 [~Amnez777@37.157.216.147] has joined #bitcoin-core-dev 15:03 -!- BashCo [~BashCo@unaffiliated/bashco] has joined #bitcoin-core-dev 15:03 -!- pmienk [~pmienk@c-71-227-177-179.hsd1.wa.comcast.net] has joined #bitcoin-core-dev 15:03 -!- Guest36311 [~socrates1@li175-104.members.linode.com] has joined #bitcoin-core-dev 15:03 -!- justanotheruser [~Justan@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 15:03 -!- isis [~isis@abulafia.patternsinthevoid.net] has joined #bitcoin-core-dev 15:03 -!- d9b4bef9 [~d9b4bef9@web419.webfaction.com] has joined #bitcoin-core-dev 15:03 -!- roasbeef [~root@104.131.26.124] has joined #bitcoin-core-dev 15:03 -!- Squidicuz [~squid@pool-173-48-102-116.bstnma.fios.verizon.net] has joined #bitcoin-core-dev 15:03 -!- sturles [~sturles@unaffiliated/sturles] has joined #bitcoin-core-dev 15:03 -!- lesderid [~lesderid@anna.lesderid.net] has joined #bitcoin-core-dev 15:03 -!- bsm1175321 [~mcelrath@38.121.165.30] has joined #bitcoin-core-dev 15:03 -!- nanotube [~nanotube@unaffiliated/nanotube] has joined #bitcoin-core-dev 15:03 -!- gmaxwell [greg@wikimedia/KatWalsh/x-0001] has joined #bitcoin-core-dev 15:03 -!- morcos [~morcos@static-100-38-11-146.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 15:03 -!- aj [aj@cerulean.erisian.com.au] has joined #bitcoin-core-dev 15:03 -!- anttea [~anttea@a88-112-146-73.elisa-laajakaista.fi] has joined #bitcoin-core-dev 15:03 -!- mturquette [sid66043@gateway/web/irccloud.com/x-aohrtpxgroqmlsti] has joined #bitcoin-core-dev 15:03 -!- jron [~okok@ec2-54-161-129-226.compute-1.amazonaws.com] has joined #bitcoin-core-dev 15:03 -!- berndj [~berndj@azna.co.za] has joined #bitcoin-core-dev 15:03 -!- midnightmagic [~midnightm@unaffiliated/midnightmagic] has joined #bitcoin-core-dev 15:03 -!- crescendo [~mozart@unaffiliated/crescendo] has joined #bitcoin-core-dev 15:03 -!- pigeons [~pigeons@94.242.209.214] has joined #bitcoin-core-dev 15:03 -!- cjcj [82ebca3a@gateway/web/freenode/ip.130.235.202.58] has joined #bitcoin-core-dev 15:03 -!- murch [~murch@p4FE3A62D.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 15:03 -!- wangchun [~wangchun@li414-193.members.linode.com] has joined #bitcoin-core-dev 15:03 -!- berndj [~berndj@azna.co.za] has quit [Max SendQ exceeded] 15:04 -!- btcdrak [uid115429@gateway/web/irccloud.com/x-jexwtuvnmjbbudgg] has quit [Ping timeout: 240 seconds] 15:04 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has joined #bitcoin-core-dev 15:04 -!- berndj [~berndj@azna.co.za] has joined #bitcoin-core-dev 15:04 -!- sdaftuar_ [~sdaftuar@static-100-38-11-146.nycmny.fios.verizon.net] has joined #bitcoin-core-dev 15:04 -!- Amnez777 [~Amnez777@37.157.216.147] has quit [Max SendQ exceeded] 15:04 -!- Amnez777 [~Amnez777@37.157.216.147] has joined #bitcoin-core-dev 15:06 -!- Cory [~C@unaffiliated/cory] has joined #bitcoin-core-dev 15:06 -!- Alopex [~bitcoin@176.9.70.183] has joined #bitcoin-core-dev 15:06 -!- fkhan [~weechat@unaffiliated/loteriety] has joined #bitcoin-core-dev 15:06 -!- PRab [~chatzilla@68.34.102.231] has joined #bitcoin-core-dev 15:06 -!- sdaftuar [~sdaftuar@unaffiliated/sdaftuar] has joined #bitcoin-core-dev 15:06 -!- jcorgan [~jcorgan@unaffiliated/jcorgan] has joined #bitcoin-core-dev 15:06 -!- Arnavion [arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 15:06 -!- Netsplit *.net <-> *.split quits: trippysalmon, haakonn, Guyver2 15:07 -!- fkhan [~weechat@unaffiliated/loteriety] has quit [Ping timeout: 255 seconds] 15:07 -!- sdaftuar [~sdaftuar@unaffiliated/sdaftuar] has quit [Ping timeout: 255 seconds] 15:07 -!- Cory [~C@unaffiliated/cory] has quit [Max SendQ exceeded] 15:08 -!- da2ce7 [~da2ce7@opentransactions/dev/da2ce7] has joined #bitcoin-core-dev 15:08 -!- Cory [~C@unaffiliated/cory] has joined #bitcoin-core-dev 15:11 -!- trippysalmon [~trippy@cyberdynesys.org] has joined #bitcoin-core-dev 15:13 -!- Netsplit *.net <-> *.split quits: trippysalmon 15:15 -!- jamesob [~job_@152.179.131.162] has quit [Ping timeout: 250 seconds] 15:15 -!- Netsplit over, joins: trippysalmon 15:18 -!- murch [~murch@p4FE3A62D.dip0.t-ipconnect.de] has left #bitcoin-core-dev [] 15:27 -!- btcdrak [uid115429@gateway/web/irccloud.com/x-vkjdlvjpcqcotjre] has joined #bitcoin-core-dev 15:29 -!- danielsocials [~quassel@221.220.128.205] has joined #bitcoin-core-dev 15:30 -!- fkhan [weechat@gateway/vpn/mullvad/x-quxivoszhjddwgob] has joined #bitcoin-core-dev 15:36 -!- danielsocials [~quassel@221.220.128.205] has quit [Ping timeout: 255 seconds] 15:40 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 15:54 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has quit [Ping timeout: 252 seconds] 15:55 -!- paveljanik [~paveljani@unaffiliated/paveljanik] has joined #bitcoin-core-dev 15:56 -!- btcdrak [uid115429@gateway/web/irccloud.com/x-vkjdlvjpcqcotjre] has quit [Quit: Connection closed for inactivity] 16:00 -!- haakonn [~haakonn@pdpc/supporter/active/haakonn] has joined #bitcoin-core-dev 16:00 -!- skyraider_ [uid41097@gateway/web/irccloud.com/x-hmaqrxemtpofvtwd] has quit [Quit: Connection closed for inactivity] 16:59 -!- jamesob [~job_@152.179.131.162] has joined #bitcoin-core-dev 17:01 -!- sdaftuar_ [~sdaftuar@static-100-38-11-146.nycmny.fios.verizon.net] has quit [Changing host] 17:01 -!- sdaftuar_ [~sdaftuar@unaffiliated/sdaftuar] has joined #bitcoin-core-dev 17:05 -!- jamesob [~job_@152.179.131.162] has quit [Ping timeout: 244 seconds] 17:28 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-cinradtdnguajzjt] has quit [Quit: Connection closed for inactivity] 17:33 -!- danielsocials [~quassel@123.122.52.142] has joined #bitcoin-core-dev 17:38 -!- danielsocials [~quassel@123.122.52.142] has quit [Ping timeout: 252 seconds] 17:40 -!- libertalis [~libertali@c-73-207-38-154.hsd1.ga.comcast.net] has joined #bitcoin-core-dev 18:03 -!- wallet42 [~wallet42@unaffiliated/wallet42] has quit [Quit: Leaving.] 18:03 -!- jamesob [~job_@50-201-192-26-static.hfc.comcastbusiness.net] has joined #bitcoin-core-dev 18:05 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has joined #bitcoin-core-dev 18:10 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has quit [Quit: laurentmt] 18:11 -!- belcher [~user@unaffiliated/belcher] has quit [Quit: Leaving] 18:17 -!- Luke-Jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 18:21 < BlueMatt> jonasschnelli: oops, i meant its parent - https://github.com/bitcoin/bitcoin/commit/9ef7c5 is unsigned 18:21 < BlueMatt> (on the 0.12 branch) 18:22 < BlueMatt> ugh, wumpus you fucked up 44fef99e too 18:22 < BlueMatt> so the 0.12 branch doesnt validate because both of y'all have unsigned non-merge-commit rebased backports 18:29 -!- Luke-Jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 18:29 -!- brg444 [4637acaa@gateway/web/freenode/ip.70.55.172.170] has joined #bitcoin-core-dev 18:29 -!- Luke-Jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 18:30 -!- alpalp [~alp@unaffiliated/alpalp] has joined #bitcoin-core-dev 18:36 -!- jamesob [~job_@50-201-192-26-static.hfc.comcastbusiness.net] has quit [Ping timeout: 252 seconds] 18:45 -!- p15 [~p15@106.91.145.64.client.static.strong-tk2.bringover.net] has joined #bitcoin-core-dev 18:45 < phantomcircuit> BlueMatt, to be clear you're talking about the deterministic builds, not about consensus code 18:45 < phantomcircuit> (this confused someone) 18:46 < BlueMatt> huh? 18:46 < BlueMatt> no? 18:46 < BlueMatt> I'm talking about commit signing 18:46 < gmaxwell> *facepalm* https://bitcointalk.org/index.php?topic=1375183.0 18:46 < BlueMatt> we sign git merges, and all is good on master, but we have two commits in the 0.12 branch that are unsigned 18:46 < BlueMatt> (they are just copies of signed commits, but are themselves unsigned) 18:47 < BlueMatt> gmaxwell: wut 18:49 -!- Luke-Jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 18:49 -!- Luke-Jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 18:52 < BlueMatt> if whoever was confused by the original comments is concerned, its a very minor policy violation...something we never really clarified as policy anyway 18:54 -!- frankenmint [~frankenmi@174-25-22-102.ptld.qwest.net] has quit [] 18:59 -!- wallet42 [~wallet42@unaffiliated/wallet42] has joined #bitcoin-core-dev 19:00 -!- dermoth [~thomas@dsl-66-36-156-69.mtl.aei.ca] has quit [Read error: Connection reset by peer] 19:01 -!- dermoth [~thomas@dsl-66-36-156-69.mtl.aei.ca] has joined #bitcoin-core-dev 19:06 -!- Luke-Jr [~luke-jr@unaffiliated/luke-jr] has quit [Excess Flood] 19:07 -!- xiangfu [~xiangfu@111.198.29.54] has joined #bitcoin-core-dev 19:08 -!- Luke-Jr [~luke-jr@unaffiliated/luke-jr] has joined #bitcoin-core-dev 19:25 -!- p15 [~p15@106.91.145.64.client.static.strong-tk2.bringover.net] has quit [Ping timeout: 244 seconds] 19:35 -!- danielsocials [~quassel@123.122.52.142] has joined #bitcoin-core-dev 19:39 -!- danielsocials [~quassel@123.122.52.142] has quit [Ping timeout: 252 seconds] 19:48 -!- btcdrak [uid115429@gateway/web/irccloud.com/x-ylhmvvxrnmbyosnz] has joined #bitcoin-core-dev 19:55 -!- brg444 [4637acaa@gateway/web/freenode/ip.70.55.172.170] has quit [Quit: Page closed] 19:56 -!- p15 [~p15@44.91.145.64.client.static.strong-tk2.bringover.net] has joined #bitcoin-core-dev 20:25 -!- zooko [~user@c-73-229-199-227.hsd1.co.comcast.net] has quit [Ping timeout: 244 seconds] 20:31 -!- AaronvanW_ [~ewout@x4db49f6c.dyn.telefonica.de] has joined #bitcoin-core-dev 20:31 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Read error: Connection reset by peer] 20:32 -!- Tasoshi [~Tasoshi@unaffiliated/tasoshi] has quit [Ping timeout: 244 seconds] 21:00 -!- dermoth [~thomas@dsl-66-36-156-69.mtl.aei.ca] has quit [Read error: Connection reset by peer] 21:00 -!- dermoth [~thomas@dsl-66-36-156-69.mtl.aei.ca] has joined #bitcoin-core-dev 21:36 -!- danielsocials [~quassel@123.122.52.142] has joined #bitcoin-core-dev 21:47 -!- danielsocials [~quassel@123.122.52.142] has quit [Ping timeout: 240 seconds] 22:13 -!- Don_John [~Don@249-223-114-134.nat.resnet.nau.edu] has quit [Read error: Connection reset by peer] 22:30 < GitHub78> [bitcoin] AliceWonderMiscreations opened pull request #7585: Update rpcconsole.cpp (master...patch-1) https://github.com/bitcoin/bitcoin/pull/7585 22:42 -!- blkdb [~blkdb@2a01:4f8:140:1407::2] has quit [Remote host closed the connection] 22:43 -!- blkdb [~blkdb@2a01:4f8:140:1407::2] has joined #bitcoin-core-dev 22:43 -!- blkdb [~blkdb@2a01:4f8:140:1407::2] has quit [Remote host closed the connection] 22:43 -!- blkdb [~blkdb@2a01:4f8:140:1407::2] has joined #bitcoin-core-dev 22:53 < jonasschnelli> BlueMatt: I guess many non-merge commits are unsigned? But right, this was during a time where I only signed merge commits and not my own PR commits. 22:54 < jonasschnelli> As example: 44fef99e666e85caa7616765412d7becf97ab673 and fab83476acf4a1eaeb5d6c3fe6195b9ff80b193c are also unsigned (aprox same timeregion) 23:00 -!- mesmer [~mesmer@unaffiliated/mesmer] has quit [Read error: Connection reset by peer] 23:10 -!- jamesob [~job_@c-73-241-180-136.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 23:18 -!- PRab [~chatzilla@68.34.102.231] has quit [Ping timeout: 255 seconds] 23:25 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has joined #bitcoin-core-dev 23:31 < BlueMatt> jonasschnelli: the two i listed above /are/ merge commits 23:31 < BlueMatt> well, are commits which were merged without a merge commits 23:31 < BlueMatt> aside from those two, all other commits on the 0.12 branch are signed 23:34 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has quit [Ping timeout: 252 seconds] 23:38 < btcdrak> all other _merge_ commits you mean. 23:39 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has joined #bitcoin-core-dev 23:44 -!- danielsocials [~quassel@123.122.52.142] has joined #bitcoin-core-dev 23:48 -!- BashCo [~BashCo@unaffiliated/bashco] has quit [Remote host closed the connection] 23:48 -!- danielsocials [~quassel@123.122.52.142] has quit [Ping timeout: 244 seconds] 23:49 < jonasschnelli> BlueMatt: https://github.com/bitcoin/bitcoin/commit/9ef7c5 (unsigned) was merged by wumpus in https://github.com/bitcoin/bitcoin/pull/7153 23:50 -!- AtashiCon [arnavion@unaffiliated/arnavion] has quit [Quit: AtashiCon] 23:50 < BlueMatt> btcdrak: yes, all other merge commits 23:50 < BlueMatt> jonasschnelli: dunno, go test contrib/verify-commits 23:51 < jonasschnelli> BlueMatt: i tried to run,... but got not output. 23:51 < jonasschnelli> no output 23:51 < jonasschnelli> hmm... 23:51 < BlueMatt> huh? 23:51 < BlueMatt> how is that possible? 23:52 < jonasschnelli> Wait.. now i get some commits listed... 23:52 < jonasschnelli> are these all unsigned commits? 23:55 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-uqjdypnkkfhwtqwv] has joined #bitcoin-core-dev 23:57 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has quit [Ping timeout: 240 seconds] 23:58 -!- AtashiCon [~Arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 23:59 < jonasschnelli> BlueMatt: thats what i get when executing verify-commits.sh (http://pastebin.com/raw/fz8rTCf6) 23:59 -!- AtashiCon [~Arnavion@unaffiliated/arnavion] has quit [Remote host closed the connection]