--- Day changed Sun Apr 10 2016 00:32 -!- murch [~murch@p4FE383B3.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 00:42 < sipa> luke-jr_: you mean the other way around, i guess 00:45 < luke-jr_> sipa: no, I mean to use SHA256(program) in the "address" (or equivalent) rather than SHA256d(program) which is fixed on the consensus protocol 00:46 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-ndzzmprgwaxbalep] has joined #bitcoin-core-dev 00:59 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Remote host closed the connection] 01:03 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has joined #bitcoin-core-dev 01:21 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 01:40 -!- xiangfu [~xiangfu@60.10.71.37] has joined #bitcoin-core-dev 01:50 -!- AaronvanW [~ewout@unaffiliated/aaronvanw] has quit [Ping timeout: 276 seconds] 02:08 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 02:09 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 02:21 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Read error: Connection reset by peer] 02:28 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 02:29 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 03:09 < luke-jr_> oh great, looks like AT&T is going to spam me with "malware infection" emails every day I run my Bitcoin node. 03:09 < luke-jr_> and trying to reply bounces because their RBL is apparently incompetent as well 03:33 < GitHub0> [bitcoin] btcdrak opened pull request #7852: [0.12] Add missing reference to release notes (0.12...bip113) https://github.com/bitcoin/bitcoin/pull/7852 03:57 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 240 seconds] 04:01 -!- sanada [sanada@36-2-119-80.chiba.ap.gmo-isp.jp] has joined #bitcoin-core-dev 04:28 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-core-dev 04:57 -!- belcher [~user@unaffiliated/belcher] has joined #bitcoin-core-dev 04:58 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has joined #bitcoin-core-dev 04:58 -!- fuc [fuc@ool-43571e2c.dyn.optonline.net] has quit [] 04:59 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has quit [Client Quit] 05:01 -!- xiangfu [~xiangfu@60.10.71.37] has quit [Ping timeout: 252 seconds] 05:03 -!- xiangfu [~xiangfu@60.10.71.37] has joined #bitcoin-core-dev 05:04 -!- fengling [~fengling@114.111.166.212] has joined #bitcoin-core-dev 05:25 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 252 seconds] 06:11 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 06:15 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-core-dev 06:24 -!- xiangfu [~xiangfu@60.10.71.37] has quit [Ping timeout: 244 seconds] 06:34 -!- fengling [~fengling@114.111.166.212] has quit [Quit: WeeChat 1.4] 06:38 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 250 seconds] 07:41 -!- murch [~murch@p4FE383B3.dip0.t-ipconnect.de] has quit [Quit: Leaving.] 07:55 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-core-dev 07:57 -!- Giszmo [~leo@pc-122-14-46-190.cm.vtr.net] has joined #bitcoin-core-dev 08:25 < GitHub55> [bitcoin] MarcoFalke opened pull request #7853: [qa] py2: Unfiddle strings into bytes explicitly (master...Mf1604-qaBytes) https://github.com/bitcoin/bitcoin/pull/7853 08:26 < Chris_Stewart_5> Can some one explain to me why we can sometimes have 5 byte numbers in Script? When is it ok to have numbers larger than 4 bytes? 08:26 < Chris_Stewart_5> The context I'm looking at is this test case in script_valid.json 08:26 < Chris_Stewart_5> "2147483647", "1ADD 2147483648 EQUAL", "P2SH,STRICTENC", "We can do math on 4-byte integers, and compare 5-byte ones" 08:27 < sipa> the (historically defined) rules are that arithmetic operators don't accept inputs larger than 4 bytes 08:28 < sipa> but adding 2 4-byte integers together may result in one that takes 5 bytes to represent 08:29 < sipa> and stack elements are only restricted to 520 bytes 08:29 < sipa> so while you can't feed the output of such an addition to another addition for example, you can feed it to other operators that don't interpret it as a number 08:31 < Chris_Stewart_5> Hmm so basically no arithmetic operation accepts a number > 4 bytes? 08:34 < sipa> indeed 08:42 < GitHub139> [bitcoin] sipa opened pull request #7854: [0.12 backport] Various script_tests improvements from master and #7818 (0.12...refactorscriptests_12) https://github.com/bitcoin/bitcoin/pull/7854 08:50 < Chris_Stewart_5> sipa: Does that pull request force the script tests to make sure it failed with the correct error? 08:53 < Chris_Stewart_5> also what is the reasoning behind combing script_valid & script_invalid? From a outsiders perspective it is much easier to figure what is going on having two individual files 08:53 < Chris_Stewart_5> combining* 08:55 < sipa> Chris_Stewart_5: i disagree 08:55 < sipa> almost all tests are doing two nearly identical tests, but with one slight change, where one succeeds and one fails 08:55 < sipa> the interesting part is knowing what makes it succeed or fail 08:56 < sipa> having to look at two different files makes this completely nonobvious 09:08 < Chris_Stewart_5> Actually yeah the more I look at it you are right. Really like the specific script errors. 09:10 -!- hybridsole [~hybridsol@unaffiliated/hybridsole] has quit [Quit: Leaving] 09:10 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has joined #bitcoin-core-dev 09:14 -!- hybridsole [~hybridsol@unaffiliated/hybridsole] has joined #bitcoin-core-dev 10:00 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 248 seconds] 10:03 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has quit [Quit: ChatZilla 0.9.92 [Firefox 45.0.1/20160315153207]] 10:04 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has joined #bitcoin-core-dev 10:28 -!- d_t [~textual@185.69.203.10] has joined #bitcoin-core-dev 10:35 -!- ghtdak [~ghtdak@unaffiliated/ghtdak] has quit [Ping timeout: 244 seconds] 10:37 -!- ghtdak [~ghtdak@unaffiliated/ghtdak] has joined #bitcoin-core-dev 10:42 < michagogo> cfields_: is there any *downside* to having a set of rc1 in there too? 10:42 < michagogo> Now I need to massage my tree and reset and stuff :-( 10:43 < michagogo> (And force-push etc) 10:43 < michagogo> (To avoid breaking anything my scripts all use --ff-only) 10:53 -!- [b__b] [~b__b]@ec2-54-85-45-223.compute-1.amazonaws.com] has quit [Remote host closed the connection] 10:54 -!- [b__b] [~b__b]@ec2-54-85-45-223.compute-1.amazonaws.com] has joined #bitcoin-core-dev 10:55 < btcdrak> michagogo: no, the rc failed, there is zero point building it. 10:55 < michagogo> btcdrak: I get that 10:55 < michagogo> But given that the sigs exist… 10:56 < michagogo> I don't see a significant downside to pulling them in anyway 10:56 < michagogo> OTOH this way forces me to fetch, reset, force push, etc 10:58 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has quit [Remote host closed the connection] 10:59 -!- Thireus [~Thireus@vps-92.197.170.217.stwvps.net] has joined #bitcoin-core-dev 11:14 -!- Cory [~C@unaffiliated/cory] has quit [Ping timeout: 276 seconds] 11:39 -!- molz [~molly@unaffiliated/molly] has joined #bitcoin-core-dev 11:41 -!- moli [~molly@unaffiliated/molly] has quit [Ping timeout: 244 seconds] 11:48 < GitHub187> [bitcoin] MarcoFalke opened pull request #7855: [doc] gitian: Replace precise with trusty (master...Mf1604-docGitian) https://github.com/bitcoin/bitcoin/pull/7855 12:11 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 12:21 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has quit [Quit: johnwhitton] 12:25 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 12:26 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has quit [Client Quit] 12:45 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has joined #bitcoin-core-dev 12:50 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 248 seconds] 12:58 -!- MarcoFalke [8af6020a@gateway/web/cgi-irc/kiwiirc.com/ip.138.246.2.10] has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client] 13:11 -!- Don_John [~Don@250-223-114-134.nat.resnet.nau.edu] has joined #bitcoin-core-dev 13:11 -!- Don_John [~Don@250-223-114-134.nat.resnet.nau.edu] has quit [Remote host closed the connection] 13:20 -!- AtashiCon [arnavion@unaffiliated/arnavion] has quit [Quit: AtashiCon] 13:24 < gmaxwell> sipa: ctaes passes https://github.com/TrustInSoft/tis-interpreter (an interperter for C based on a formalization of the language that detects undefined operations) 13:26 < sipa> ah, nice 13:27 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 13:29 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has quit [Client Quit] 13:30 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 13:33 -!- AtashiCon [arnavion@unaffiliated/arnavion] has joined #bitcoin-core-dev 13:34 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has quit [Client Quit] 13:37 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 13:37 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has quit [Client Quit] 13:46 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has joined #bitcoin-core-dev 13:47 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has quit [Client Quit] 13:58 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-core-dev 14:19 -!- murch [~murch@p4FE383B3.dip0.t-ipconnect.de] has joined #bitcoin-core-dev 14:21 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 248 seconds] 14:41 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 14:52 -!- go1111111 [~go1111111@189.167.89.64] has joined #bitcoin-core-dev 15:01 -!- Guyver2 [~Guyver2@guyver2.xs4all.nl] has quit [Quit: :)] 15:18 -!- Cory [~C@unaffiliated/cory] has joined #bitcoin-core-dev 15:23 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 15:24 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 15:29 -!- justanotheruser [~Justan@unaffiliated/justanotheruser] has quit [Read error: Connection reset by peer] 15:31 -!- justanotheruser [~Justan@unaffiliated/justanotheruser] has joined #bitcoin-core-dev 15:36 -!- go1111111 [~go1111111@189.167.89.64] has quit [Ping timeout: 268 seconds] 15:45 -!- murch [~murch@p4FE383B3.dip0.t-ipconnect.de] has quit [Quit: Leaving.] 16:04 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 246 seconds] 17:13 -!- challisto [~challisto@unaffiliated/challisto] has joined #bitcoin-core-dev 17:46 -!- btcdrak [uid115429@gateway/web/irccloud.com/x-cszbqlnojkzumpdu] has quit [Quit: Connection closed for inactivity] 17:49 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has quit [Read error: Connection reset by peer] 18:08 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has joined #bitcoin-core-dev 18:16 -!- belcher [~user@unaffiliated/belcher] has quit [Quit: Leaving] 18:22 < BlueMatt> anyone around who might have a node which restarts occasionally, could you grep for "prev block not found" in debug.log and report the frequency? 18:24 < achow101> BlueMatt: I've got it twive 18:24 < achow101> *twice 18:24 < BlueMatt> across how many days/restarts? 18:26 < GitHub121> [bitcoin] gmaxwell opened pull request #7856: Only send one GetAddr response per connection. (master...addr_once) https://github.com/bitcoin/bitcoin/pull/7856 18:26 < achow101> since march 10th and 51 restarts 18:27 < BlueMatt> achow101: thanks 18:28 -!- fengling [~fengling@111.198.29.53] has joined #bitcoin-core-dev 18:32 -!- PRab [~chatzilla@c-68-34-102-231.hsd1.mi.comcast.net] has joined #bitcoin-core-dev 18:52 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 19:00 -!- dermoth [~thomas@dsl-66-36-145-24.mtl.aei.ca] has quit [Read error: Connection reset by peer] 19:01 -!- dermoth [~thomas@dsl-66-36-145-24.mtl.aei.ca] has joined #bitcoin-core-dev 19:09 -!- xiangfu [~xiangfu@111.198.29.53] has joined #bitcoin-core-dev 19:10 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has quit [Quit: johnwhitton] 19:24 -!- johnwhitton [~johnwhitt@c-71-202-223-50.hsd1.ca.comcast.net] has joined #bitcoin-core-dev 19:41 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-ndzzmprgwaxbalep] has quit [Quit: Connection closed for inactivity] 20:05 -!- PaulCape_ [~PaulCapes@204.28.124.82] has quit [Quit: .] 20:07 -!- PaulCapestany [~PaulCapes@204.28.124.82] has joined #bitcoin-core-dev 20:11 -!- btcdrak [uid115429@gateway/web/irccloud.com/x-ndzxvdlrbwfpugkp] has joined #bitcoin-core-dev 20:18 -!- Chris_Stewart_5 [~Chris_Ste@unaffiliated/chris-stewart-5/x-3612383] has quit [Ping timeout: 246 seconds] 21:21 -!- xiangfu [~xiangfu@111.198.29.53] has quit [Ping timeout: 240 seconds] 21:21 -!- xiangfu [~xiangfu@111.198.29.53] has joined #bitcoin-core-dev 21:28 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has joined #bitcoin-core-dev 21:45 -!- Giszmo [~leo@pc-122-14-46-190.cm.vtr.net] has quit [Quit: Leaving.] 22:36 -!- fengling [~fengling@111.198.29.53] has quit [Ping timeout: 240 seconds] 22:40 -!- Alopex [~bitcoin@cyber.dealing.ninja] has quit [Remote host closed the connection] 22:41 -!- Alopex [~bitcoin@cyber.dealing.ninja] has joined #bitcoin-core-dev 23:00 -!- dermoth [~thomas@dsl-66-36-145-24.mtl.aei.ca] has quit [Read error: Connection reset by peer] 23:00 -!- dermoth [~thomas@dsl-66-36-145-24.mtl.aei.ca] has joined #bitcoin-core-dev 23:02 -!- jarret [~jarret@162.216.46.119] has quit [Ping timeout: 246 seconds] 23:09 -!- ThomasV [~ThomasV@unaffiliated/thomasv] has quit [Ping timeout: 276 seconds] 23:19 -!- xiangfu [~xiangfu@111.198.29.53] has quit [Ping timeout: 268 seconds] 23:26 -!- btcdrak [uid115429@gateway/web/irccloud.com/x-ndzxvdlrbwfpugkp] has quit [Quit: Connection closed for inactivity] 23:29 -!- d_t [~textual@185.69.203.10] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…] 23:39 -!- xiangfu [~xiangfu@111.198.29.53] has joined #bitcoin-core-dev 23:41 -!- fengling [~fengling@111.198.29.53] has joined #bitcoin-core-dev 23:53 -!- Ylbam [uid99779@gateway/web/irccloud.com/x-xbbczlbabvpvxnsh] has joined #bitcoin-core-dev 23:55 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has joined #bitcoin-core-dev 23:56 -!- cjcj_ [82ebca3a@gateway/web/freenode/ip.130.235.202.58] has joined #bitcoin-core-dev 23:58 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has quit [Client Quit] 23:58 -!- laurentmt [~Thunderbi@128-79-141-196.hfc.dyn.abo.bbox.fr] has joined #bitcoin-core-dev