12020-09-02T00:00:01 *** alexsuraci has quit IRC
22020-09-02T00:00:30 *** dhruv has left #bitcoin-core-dev
32020-09-02T00:02:07 *** dhruvm has joined #bitcoin-core-dev
42020-09-02T00:02:56 *** Livestradamus has quit IRC
52020-09-02T00:03:06 <dhruvm> I have been trying to set up a C++ scratchpad to try things while being able to interface with the bitcoin code. I put my code in `src/scratch.cpp` and I try to compile it with `g++ -std=c++11 -O1 -fsanitize=undefined src/scratch.cpp -o scratch` (in this case I am trying to reproduce a sanitizer bug). I'm met with a wall of errors that look like
62020-09-02T00:03:07 <dhruvm> this:
72020-09-02T00:03:07 <dhruvm> ---
82020-09-02T00:03:08 <dhruvm> In file included from scratch.cpp:3:
92020-09-02T00:03:08 <dhruvm> ./netaddress.h:12:10: error: 'attributes.h' file not found with <angled> include; use "quotes" instead
102020-09-02T00:03:09 <dhruvm> #include <attributes.h>
112020-09-02T00:03:09 <dhruvm> ^~~~~~~~~~~~~~
122020-09-02T00:03:10 <dhruvm> "attributes.h"
132020-09-02T00:03:10 <dhruvm> ---
142020-09-02T00:03:11 <dhruvm> Sample `src/scratch.cpp`:
152020-09-02T00:03:11 <dhruvm> ```
162020-09-02T00:03:12 <dhruvm> #include <iostream>
172020-09-02T00:03:12 <dhruvm> #include "prevector.h"
182020-09-02T00:03:13 <dhruvm> #include "netaddress.h"
192020-09-02T00:03:13 <dhruvm> #include <arpa/inet.h>
202020-09-02T00:03:14 <dhruvm> int main() {
212020-09-02T00:03:14 <dhruvm> in_addr_t a = inet_addr("127.0.0.1");
222020-09-02T00:03:15 <dhruvm> CNetAddr addr{in_addr{a}};
232020-09-02T00:03:28 *** Livestradamus has joined #bitcoin-core-dev
242020-09-02T00:03:46 *** mdunnio has joined #bitcoin-core-dev
252020-09-02T00:04:46 *** Anduck has quit IRC
262020-09-02T00:05:17 *** Tennis has quit IRC
272020-09-02T00:05:21 <gwillen> drbrule: all the bitcoin code is compiled with various compiler flags that are set in the Makefile, so it will be tricky to compile a single scratch file on its own like that
282020-09-02T00:05:42 *** Anduck has joined #bitcoin-core-dev
292020-09-02T00:05:47 <gwillen> one thing you could do is to run `make` with V=1 (I think that's the magic?) and see what command it runs to compile some other file under 'src', and copy the flags
302020-09-02T00:06:07 <gwillen> another option since you're just playing around would be to just toss stuff at the bottom of some other file
312020-09-02T00:06:41 <gwillen> (the best option if you actually wanted to add a file for real would be to go add it to the build stuff, but that can get kind of hairy)
322020-09-02T00:08:05 *** mdunnio has quit IRC
332020-09-02T00:08:07 <gwillen> if you want to experiment with code you can actually run (rather than merely compile), you'll need linking too, and I would suggest you just find one of the files that implement RPCs (e.g. rpc/rawtransaction.cpp) and add a new RPC there that you can call
342020-09-02T00:08:45 <dhruvm> when i try `make -n` i do see the g++ commands with all the flags but those don't seem to address the errors.
352020-09-02T00:09:12 <dhruvm> i see -- so try and use the existing tooling rather than add a scratch pad. i'll try that. thank you gwillen.
362020-09-02T00:17:49 <sipa> in particular you need -Isrc here
372020-09-02T00:19:46 <dhruvm> As in `g++ -std=c++11 -O1 -lsrc -fsanitize=undefined src/scratch.cpp -o scratch`?
382020-09-02T00:20:22 *** kristapsk has joined #bitcoin-core-dev
392020-09-02T00:20:41 <sipa> not l, I
402020-09-02T00:20:44 <sipa> capital i
412020-09-02T00:21:01 <sipa> but i'd be surprised if that's all you need
422020-09-02T00:21:11 <dhruvm> It moved me forward :)
432020-09-02T00:21:41 <dhruvm> The quotes problem went away - i'll try further with the remaining flags from `make -n`
442020-09-02T00:23:09 <dhruvm> If i am reading it correctly, i need to figure out linking next because I'm getting back: "Undefined symbols for architecture x86_64:"
452020-09-02T00:23:40 <dhruvm> Also: `clang: error: linker command failed with exit code 1 (use -v to see invocation)`
462020-09-02T00:23:53 <dhruvm> Anyway, thanks sipa! I'll be back with more after trying a bit.
472020-09-02T00:35:59 *** EagleTM has quit IRC
482020-09-02T00:42:59 *** dhruvm has quit IRC
492020-09-02T00:51:20 *** Jackielove4u has quit IRC
502020-09-02T00:56:09 *** wgolden has joined #bitcoin-core-dev
512020-09-02T01:31:10 *** arowser has quit IRC
522020-09-02T01:31:45 *** wgolden has quit IRC
532020-09-02T01:31:53 *** arowser has joined #bitcoin-core-dev
542020-09-02T01:47:27 *** dhruvm has joined #bitcoin-core-dev
552020-09-02T01:48:43 *** jb55 has quit IRC
562020-09-02T01:49:24 *** watersnake1 has joined #bitcoin-core-dev
572020-09-02T01:56:05 *** dhruvm has quit IRC
582020-09-02T01:58:03 *** watersnake1 has left #bitcoin-core-dev
592020-09-02T01:58:59 *** devnewton has joined #bitcoin-core-dev
602020-09-02T02:03:59 *** jb55 has joined #bitcoin-core-dev
612020-09-02T02:21:19 *** shesek has quit IRC
622020-09-02T02:26:00 *** Kalhymn has joined #bitcoin-core-dev
632020-09-02T02:27:10 <instagibbs> #14687 seems ready for merge
642020-09-02T02:27:12 <gribble> https://github.com/bitcoin/bitcoin/issues/14687 | zmq: enable tcp keepalive by mruddy · Pull Request #14687 · bitcoin/bitcoin · GitHub
652020-09-02T02:30:42 <instagibbs> 3 tACKs, people running it as custom patch apparently, nothing controversial
662020-09-02T02:37:02 *** Kalhymn has left #bitcoin-core-dev
672020-09-02T03:00:02 *** devnewton has quit IRC
682020-09-02T03:19:16 *** sendak has joined #bitcoin-core-dev
692020-09-02T03:21:05 *** Highway61 has quit IRC
702020-09-02T03:21:07 *** yanmaani has quit IRC
712020-09-02T03:21:57 *** yanmaani has joined #bitcoin-core-dev
722020-09-02T03:49:12 *** arowser has quit IRC
732020-09-02T03:49:54 *** arowser has joined #bitcoin-core-dev
742020-09-02T04:01:47 <kallewoof> Apple responded to my bug report regarding ftruncate on macos: https://openradar.appspot.com/radar?id=4930713610616832
752020-09-02T04:01:58 <kallewoof> "Works as currently designed"
762020-09-02T04:02:18 <kallewoof> Apparently they intend to implement posix_fallocate() at some point tho, apparently.
772020-09-02T04:21:35 <luke-jr> kallewoof: interesting
782020-09-02T05:25:31 *** sendak has quit IRC
792020-09-02T06:00:19 *** mdunnio has joined #bitcoin-core-dev
802020-09-02T06:00:47 *** fjahr has quit IRC
812020-09-02T06:00:55 *** mariorz has quit IRC
822020-09-02T06:01:27 *** hebasto has quit IRC
832020-09-02T06:02:38 *** NicolasDorier has quit IRC
842020-09-02T06:02:38 *** endogenic has quit IRC
852020-09-02T06:02:56 *** digi_james has quit IRC
862020-09-02T06:03:03 *** mmitech__ has quit IRC
872020-09-02T06:03:06 *** NicolasDorier has joined #bitcoin-core-dev
882020-09-02T06:03:08 *** fjahr has joined #bitcoin-core-dev
892020-09-02T06:03:16 *** digi_james has joined #bitcoin-core-dev
902020-09-02T06:03:19 *** endogenic has joined #bitcoin-core-dev
912020-09-02T06:03:48 *** mariorz has joined #bitcoin-core-dev
922020-09-02T06:04:33 *** hebasto has joined #bitcoin-core-dev
932020-09-02T06:05:15 *** mmitech__ has joined #bitcoin-core-dev
942020-09-02T06:08:38 *** mdunnio has quit IRC
952020-09-02T06:20:56 *** dhruvm has joined #bitcoin-core-dev
962020-09-02T06:21:26 *** Morgon1 has joined #bitcoin-core-dev
972020-09-02T06:26:05 *** dviola has quit IRC
982020-09-02T06:28:29 *** dhruvm has quit IRC
992020-09-02T06:38:10 *** Guyver2 has joined #bitcoin-core-dev
1002020-09-02T06:40:25 *** dviola has joined #bitcoin-core-dev
1012020-09-02T06:40:51 *** opsec_x12 has quit IRC
1022020-09-02T06:41:11 *** opsec_x12 has joined #bitcoin-core-dev
1032020-09-02T06:48:02 *** Jackielove4u has joined #bitcoin-core-dev
1042020-09-02T07:05:56 *** jonatack has quit IRC
1052020-09-02T07:07:57 *** sipsorcery has joined #bitcoin-core-dev
1062020-09-02T07:09:54 *** bitcoin-git has joined #bitcoin-core-dev
1072020-09-02T07:09:54 <bitcoin-git> [bitcoin] jonasschnelli pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/48c108363268...3a3e21dafb72
1082020-09-02T07:09:54 <bitcoin-git> bitcoin/master c276df7 mruddy: zmq: enable tcp keepalive
1092020-09-02T07:09:55 <bitcoin-git> bitcoin/master 3a3e21d Jonas Schnelli: Merge #14687: zmq: enable tcp keepalive
1102020-09-02T07:09:56 *** bitcoin-git has left #bitcoin-core-dev
1112020-09-02T07:11:48 *** bitcoin-git has joined #bitcoin-core-dev
1122020-09-02T07:11:48 <bitcoin-git> [bitcoin] jonasschnelli merged pull request #14687: zmq: enable tcp keepalive (master...zmq-keep-alive) https://github.com/bitcoin/bitcoin/pull/14687
1132020-09-02T07:11:50 *** bitcoin-git has left #bitcoin-core-dev
1142020-09-02T07:14:41 *** marcoagner has joined #bitcoin-core-dev
1152020-09-02T07:33:22 *** jb55 has quit IRC
1162020-09-02T07:33:52 *** jb55 has joined #bitcoin-core-dev
1172020-09-02T07:45:14 *** robot-dreams has quit IRC
1182020-09-02T07:45:25 *** jonatack has joined #bitcoin-core-dev
1192020-09-02T07:46:13 *** andreacab has joined #bitcoin-core-dev
1202020-09-02T07:46:19 *** andreacab has joined #bitcoin-core-dev
1212020-09-02T07:46:42 *** EagleTM has joined #bitcoin-core-dev
1222020-09-02T07:48:01 *** gzhao408 has quit IRC
1232020-09-02T07:51:52 *** robot-dreams has joined #bitcoin-core-dev
1242020-09-02T07:55:25 *** palazzovincenzo has joined #bitcoin-core-dev
1252020-09-02T07:57:14 *** vincenzopalazzo has quit IRC
1262020-09-02T07:59:50 *** andreacab has quit IRC
1272020-09-02T08:00:03 *** andreacab has joined #bitcoin-core-dev
1282020-09-02T08:06:03 *** mrostecki_ has quit IRC
1292020-09-02T08:12:05 *** kljasdfvv has quit IRC
1302020-09-02T08:13:33 *** kljasdfvv has joined #bitcoin-core-dev
1312020-09-02T08:17:19 *** sipsorcery has quit IRC
1322020-09-02T08:19:53 *** robot-dreams has quit IRC
1332020-09-02T08:20:59 *** palazzovincenzo has quit IRC
1342020-09-02T08:29:24 *** sipsorcery has joined #bitcoin-core-dev
1352020-09-02T08:42:29 *** EagleTM has quit IRC
1362020-09-02T08:45:20 *** Bullit has joined #bitcoin-core-dev
1372020-09-02T08:47:29 *** Bullit has quit IRC
1382020-09-02T08:48:10 *** Bullit has joined #bitcoin-core-dev
1392020-09-02T09:00:02 *** Morgon1 has quit IRC
1402020-09-02T09:07:01 <jnewbery> wumpus: #19610 might be ready for merge
1412020-09-02T09:07:04 <gribble> https://github.com/bitcoin/bitcoin/issues/19610 | p2p: refactor AlreadyHave(), CInv::type, INV/TX processing by jonatack · Pull Request #19610 · bitcoin/bitcoin · GitHub
1422020-09-02T09:12:28 *** robot-dreams has joined #bitcoin-core-dev
1432020-09-02T09:18:39 *** robot-dreams has quit IRC
1442020-09-02T09:22:05 *** sendak has joined #bitcoin-core-dev
1452020-09-02T09:25:31 *** mrostecki has joined #bitcoin-core-dev
1462020-09-02T09:32:45 *** Guyver2_ has joined #bitcoin-core-dev
1472020-09-02T09:33:53 *** sipsorcery has quit IRC
1482020-09-02T09:34:11 *** sipsorcery has joined #bitcoin-core-dev
1492020-09-02T09:36:32 *** Guyver2 has quit IRC
1502020-09-02T09:37:30 *** andreacab has quit IRC
1512020-09-02T09:40:26 *** andreacab has joined #bitcoin-core-dev
1522020-09-02T09:43:09 *** andreacab has quit IRC
1532020-09-02T09:43:18 *** andreacab has joined #bitcoin-core-dev
1542020-09-02T09:49:34 *** robot-dreams has joined #bitcoin-core-dev
1552020-09-02T09:54:00 *** robot-dreams has quit IRC
1562020-09-02T09:57:18 *** Guyver2_ has quit IRC
1572020-09-02T10:01:40 *** kristapsk has quit IRC
1582020-09-02T10:02:00 *** kristapsk has joined #bitcoin-core-dev
1592020-09-02T10:02:06 *** victorSN has quit IRC
1602020-09-02T10:02:53 *** victorSN has joined #bitcoin-core-dev
1612020-09-02T10:12:19 *** andreacab has quit IRC
1622020-09-02T10:16:18 *** andreacab has joined #bitcoin-core-dev
1632020-09-02T10:18:43 *** Alf41Ryan has joined #bitcoin-core-dev
1642020-09-02T10:21:27 *** andreacab has quit IRC
1652020-09-02T10:22:55 *** jonatack has quit IRC
1662020-09-02T10:24:58 *** robot-dreams has joined #bitcoin-core-dev
1672020-09-02T10:29:49 *** robot-dreams has quit IRC
1682020-09-02T10:35:35 *** andreacab has joined #bitcoin-core-dev
1692020-09-02T10:37:10 *** arowser has quit IRC
1702020-09-02T10:37:54 *** arowser has joined #bitcoin-core-dev
1712020-09-02T10:44:27 *** dviola has left #bitcoin-core-dev
1722020-09-02T10:44:47 *** dviola has joined #bitcoin-core-dev
1732020-09-02T10:53:10 <wumpus> jnewbery: looks like it!
1742020-09-02T10:59:03 *** vasild has quit IRC
1752020-09-02T11:01:00 *** vasild has joined #bitcoin-core-dev
1762020-09-02T11:07:12 *** andreacab has quit IRC
1772020-09-02T11:07:38 *** andreacab has joined #bitcoin-core-dev
1782020-09-02T11:12:07 *** andreacab has quit IRC
1792020-09-02T11:12:45 *** robot-dreams has joined #bitcoin-core-dev
1802020-09-02T11:15:12 *** andreacab has joined #bitcoin-core-dev
1812020-09-02T11:17:24 *** robot-dreams has quit IRC
1822020-09-02T11:23:51 *** andreacab has quit IRC
1832020-09-02T11:24:18 *** andreacab has joined #bitcoin-core-dev
1842020-09-02T11:28:11 *** owowo has quit IRC
1852020-09-02T11:28:34 *** andreaca_ has joined #bitcoin-core-dev
1862020-09-02T11:28:42 *** andreacab has quit IRC
1872020-09-02T11:30:57 *** andreaca_ has quit IRC
1882020-09-02T11:43:13 *** Alf41Ryan has quit IRC
1892020-09-02T11:46:25 *** bitcoin-git has joined #bitcoin-core-dev
1902020-09-02T11:46:26 <bitcoin-git> [bitcoin] laanwj pushed 11 commits to master: https://github.com/bitcoin/bitcoin/compare/3a3e21dafb72...505b39e72b48
1912020-09-02T11:46:26 <bitcoin-git> bitcoin/master 471714e Jon Atack: p2p: add CInv block message helper methods
1922020-09-02T11:46:26 <bitcoin-git> bitcoin/master 39f1dc9 Jon Atack: p2p: remove nFetchFlags from NetMsgType TX and INV processing
1932020-09-02T11:46:28 <bitcoin-git> bitcoin/master 42ca561 John Newbery: [net processing] Split AlreadyHave() into separate block and tx functions
1942020-09-02T11:46:29 *** bitcoin-git has left #bitcoin-core-dev
1952020-09-02T11:46:45 *** bitcoin-git has joined #bitcoin-core-dev
1962020-09-02T11:46:45 <bitcoin-git> [bitcoin] laanwj merged pull request #19610: p2p: refactor AlreadyHave(), CInv::type, INV/TX processing (master...CInv-block-message-helpers) https://github.com/bitcoin/bitcoin/pull/19610
1972020-09-02T11:46:46 *** bitcoin-git has left #bitcoin-core-dev
1982020-09-02T11:52:13 *** arowser has quit IRC
1992020-09-02T11:52:54 *** arowser has joined #bitcoin-core-dev
2002020-09-02T12:00:02 *** sendak has quit IRC
2012020-09-02T12:00:54 *** Guyver2 has joined #bitcoin-core-dev
2022020-09-02T12:17:49 *** robot-dreams has joined #bitcoin-core-dev
2032020-09-02T12:20:25 *** bitcoin-git has joined #bitcoin-core-dev
2042020-09-02T12:20:26 <bitcoin-git> [bitcoin] n-thumann opened pull request #19859: qa: Fixes failing functional test by changing version (master...qa-fix-wrong-version) https://github.com/bitcoin/bitcoin/pull/19859
2052020-09-02T12:20:27 *** bitcoin-git has left #bitcoin-core-dev
2062020-09-02T12:21:56 *** Kabaka has joined #bitcoin-core-dev
2072020-09-02T12:22:20 *** robot-dreams has quit IRC
2082020-09-02T12:36:22 *** bitcoin-git has joined #bitcoin-core-dev
2092020-09-02T12:36:23 <bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/505b39e72b48...c17a00375808
2102020-09-02T12:36:23 <bitcoin-git> bitcoin/master d780293 Jon Atack: net: improve nLastBlockTime and nLastTXTime documentation
2112020-09-02T12:36:24 <bitcoin-git> bitcoin/master c17a003 fanquake: Merge #19857: net: improve nLastBlockTime and nLastTXTime documentation
2122020-09-02T12:36:26 *** bitcoin-git has left #bitcoin-core-dev
2132020-09-02T12:36:42 *** bitcoin-git has joined #bitcoin-core-dev
2142020-09-02T12:36:42 <bitcoin-git> [bitcoin] fanquake merged pull request #19857: net: improve nLastBlockTime and nLastTXTime documentation (master...nLast-documentation) https://github.com/bitcoin/bitcoin/pull/19857
2152020-09-02T12:36:43 *** bitcoin-git has left #bitcoin-core-dev
2162020-09-02T12:37:28 *** sipsorcery has quit IRC
2172020-09-02T12:39:28 *** sipsorcery has joined #bitcoin-core-dev
2182020-09-02T12:40:45 *** nanotube has quit IRC
2192020-09-02T12:45:58 *** nanotube has joined #bitcoin-core-dev
2202020-09-02T12:50:23 <ryanofsky> If I restart a failing travis or appveyor build, github changes from red to yellow. If I restart failing cirrus build, it github stays red
2212020-09-02T12:50:44 <ryanofsky> Is there some lag, or is it just not even worth restarting cirrus builds because they will always stay red?
2222020-09-02T12:51:12 <hebasto> cirrus will turn green after success build
2232020-09-02T12:55:24 <ryanofsky> oh that's good, thanks
2242020-09-02T13:00:31 *** Highway61 has joined #bitcoin-core-dev
2252020-09-02T13:03:47 *** bitcoin-git has joined #bitcoin-core-dev
2262020-09-02T13:03:48 <bitcoin-git> [bitcoin] fanquake pushed 6 commits to master: https://github.com/bitcoin/bitcoin/compare/c17a00375808...8845b38b599e
2272020-09-02T13:03:48 <bitcoin-git> bitcoin/master 3ecf0ec Carl Dong: depends: Use $($(package)_cmake) instead of cmake
2282020-09-02T13:03:49 <bitcoin-git> bitcoin/master 8c7cd0c Carl Dong: depends: More robust cmake invocation
2292020-09-02T13:03:50 <bitcoin-git> bitcoin/master 8e121e5 Carl Dong: depends: Cleanup CMake invocation
2302020-09-02T13:03:51 *** bitcoin-git has left #bitcoin-core-dev
2312020-09-02T13:04:07 *** bitcoin-git has joined #bitcoin-core-dev
2322020-09-02T13:04:07 <bitcoin-git> [bitcoin] fanquake merged pull request #19685: depends: CMake invocation cleanup (master...2020-08-depends-misc) https://github.com/bitcoin/bitcoin/pull/19685
2332020-09-02T13:04:08 *** bitcoin-git has left #bitcoin-core-dev
2342020-09-02T13:09:27 *** arowser has quit IRC
2352020-09-02T13:10:13 *** arowser has joined #bitcoin-core-dev
2362020-09-02T13:11:15 *** arowser has quit IRC
2372020-09-02T13:11:57 *** arowser has joined #bitcoin-core-dev
2382020-09-02T13:14:15 *** arowser has quit IRC
2392020-09-02T13:14:57 *** arowser has joined #bitcoin-core-dev
2402020-09-02T13:15:03 *** davterra has quit IRC
2412020-09-02T13:15:18 *** bitcoin-git has joined #bitcoin-core-dev
2422020-09-02T13:15:18 <bitcoin-git> [bitcoin] laanwj pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/8845b38b599e...c157a5069454
2432020-09-02T13:15:19 <bitcoin-git> bitcoin/master 413e0d1 João Barbosa: Avoid callback when -blocknotify is empty
2442020-09-02T13:15:19 <bitcoin-git> bitcoin/master c157a50 Wladimir J. van der Laan: Merge #19840: Avoid callback when -blocknotify is empty
2452020-09-02T13:15:21 *** bitcoin-git has left #bitcoin-core-dev
2462020-09-02T13:15:38 *** bitcoin-git has joined #bitcoin-core-dev
2472020-09-02T13:15:38 <bitcoin-git> [bitcoin] laanwj merged pull request #19840: Avoid callback when -blocknotify is empty (master...2020-08-blocknotify) https://github.com/bitcoin/bitcoin/pull/19840
2482020-09-02T13:15:39 *** bitcoin-git has left #bitcoin-core-dev
2492020-09-02T13:15:53 *** davterra has joined #bitcoin-core-dev
2502020-09-02T13:17:23 *** jonatack has joined #bitcoin-core-dev
2512020-09-02T13:22:44 *** roconnor has quit IRC
2522020-09-02T13:25:45 *** bentatum has joined #bitcoin-core-dev
2532020-09-02T13:28:21 *** lightlike has joined #bitcoin-core-dev
2542020-09-02T13:33:49 <elichai2> luke-jr: it seems that it might be possible to use mrustc on non-x86 computers :) https://github.com/thepowersgang/mrustc/issues/39#issuecomment-685738622
2552020-09-02T13:35:08 <luke-jr> elichai2: I did try
2562020-09-02T13:35:16 <luke-jr> https://github.com/thepowersgang/mrustc/pull/159
2572020-09-02T13:35:41 <elichai2> oh, that's cool :)
2582020-09-02T13:37:26 *** ppisati is now known as flag
2592020-09-02T13:46:27 *** mdunnio has joined #bitcoin-core-dev
2602020-09-02T13:48:26 *** lightlike has quit IRC
2612020-09-02T13:55:47 *** jonatack has quit IRC
2622020-09-02T13:56:20 *** jonatack_ has joined #bitcoin-core-dev
2632020-09-02T14:01:02 *** andreacab has joined #bitcoin-core-dev
2642020-09-02T14:01:29 *** arowser has quit IRC
2652020-09-02T14:02:11 *** arowser has joined #bitcoin-core-dev
2662020-09-02T14:02:17 *** arowser has quit IRC
2672020-09-02T14:02:58 *** arowser has joined #bitcoin-core-dev
2682020-09-02T14:03:15 *** mdunnio has quit IRC
2692020-09-02T14:03:28 *** mdunnio has joined #bitcoin-core-dev
2702020-09-02T14:05:39 *** andreacab has quit IRC
2712020-09-02T14:05:59 *** robot-dreams has joined #bitcoin-core-dev
2722020-09-02T14:06:28 *** bitcoin-git has joined #bitcoin-core-dev
2732020-09-02T14:06:28 <bitcoin-git> [bitcoin] naumenkogs opened pull request #19860: Improve diversification of new connections: privacy and stability (master...2020-09-diverse-new-conn-fixes) https://github.com/bitcoin/bitcoin/pull/19860
2742020-09-02T14:06:29 *** bitcoin-git has left #bitcoin-core-dev
2752020-09-02T14:10:11 *** robot-dreams has quit IRC
2762020-09-02T14:22:53 *** robot-dreams has joined #bitcoin-core-dev
2772020-09-02T14:23:48 *** lightlike has joined #bitcoin-core-dev
2782020-09-02T14:28:52 *** AaronvanW has joined #bitcoin-core-dev
2792020-09-02T14:36:53 *** EagleTM has joined #bitcoin-core-dev
2802020-09-02T14:37:12 *** vincenzopalazzo has joined #bitcoin-core-dev
2812020-09-02T14:37:29 *** robot-dreams has quit IRC
2822020-09-02T14:38:06 *** robot-dreams has joined #bitcoin-core-dev
2832020-09-02T14:39:55 *** bentatum has quit IRC
2842020-09-02T14:42:56 *** robot-dreams has quit IRC
2852020-09-02T15:00:02 *** Kabaka has quit IRC
2862020-09-02T15:05:47 *** jonatack_ has quit IRC
2872020-09-02T15:20:47 *** Talkless has joined #bitcoin-core-dev
2882020-09-02T15:35:38 *** jonatack_ has joined #bitcoin-core-dev
2892020-09-02T15:35:48 *** dhruvm has joined #bitcoin-core-dev
2902020-09-02T15:38:15 *** jonatack_ has quit IRC
2912020-09-02T15:38:16 <dhruvm> May I please request a CI job restart? https://travis-ci.org/github/bitcoin/bitcoin/jobs/723342800 Also, Cirrus CI did not run on the latest force push for https://github.com/bitcoin/bitcoin/pull/19825
2922020-09-02T15:39:03 *** jonatack has joined #bitcoin-core-dev
2932020-09-02T15:41:57 *** bitcoin-git has joined #bitcoin-core-dev
2942020-09-02T15:41:57 <bitcoin-git> [bitcoin] ryanofsky closed pull request #17556: test: Change feature_config_args.py not to rely on strange regtest=0 behavior (master...pr/wdpy) https://github.com/bitcoin/bitcoin/pull/17556
2952020-09-02T15:41:59 *** bitcoin-git has left #bitcoin-core-dev
2962020-09-02T15:42:16 *** bitcoin-git has joined #bitcoin-core-dev
2972020-09-02T15:42:16 <bitcoin-git> [bitcoin] ryanofsky reopened pull request #17556: test: Change feature_config_args.py not to rely on strange regtest=0 behavior (master...pr/wdpy) https://github.com/bitcoin/bitcoin/pull/17556
2982020-09-02T15:42:17 *** bitcoin-git has left #bitcoin-core-dev
2992020-09-02T15:46:19 <ryanofsky> dhruvm, restarted the travis ci. don't know why the cirrus ci is missing (seems lucky though)
3002020-09-02T15:47:23 <dhruvm> thanks ryanofsky
3012020-09-02T15:47:47 <dhruvm> do you know if there's a way to force cirrus CI to run? that's the job that failed last time and I think I've fixed it.
3022020-09-02T15:49:16 *** robot-dreams has joined #bitcoin-core-dev
3032020-09-02T15:53:37 *** ovi has quit IRC
3042020-09-02T15:57:10 *** MichealH-iPod has joined #bitcoin-core-dev
3052020-09-02T15:57:33 <ryanofsky> dhruvm, I don't know why it doesn't appear, but you could push a commit with a different hash to restart all the ci's
3062020-09-02T16:07:11 <dhruvm> Hmm, It seems cirrus CI has not run on the last couple new PRs opened as well. I'll wait it out.
3072020-09-02T16:10:59 *** Guyver2_ has joined #bitcoin-core-dev
3082020-09-02T16:13:46 *** Guyver2 has quit IRC
3092020-09-02T16:18:18 *** Guyver2_ has quit IRC
3102020-09-02T16:18:35 *** Guyver2_ has joined #bitcoin-core-dev
3112020-09-02T16:20:30 *** gzhao408 has joined #bitcoin-core-dev
3122020-09-02T16:41:56 *** EagleTM has quit IRC
3132020-09-02T16:43:18 *** robot-dreams has quit IRC
3142020-09-02T16:43:33 *** robot-dreams has joined #bitcoin-core-dev
3152020-09-02T16:49:23 <wumpus> right, looks like it is simply not running, i hope it's an intermittent issue
3162020-09-02T17:07:04 *** justanotheruser has quit IRC
3172020-09-02T17:09:17 *** bosch has joined #bitcoin-core-dev
3182020-09-02T17:24:39 *** Talkless has quit IRC
3192020-09-02T17:25:04 *** justanotheruser has joined #bitcoin-core-dev
3202020-09-02T17:25:22 *** Talkless has joined #bitcoin-core-dev
3212020-09-02T17:29:56 *** dhruvm has quit IRC
3222020-09-02T17:38:26 *** Asbestos_Vapor has joined #bitcoin-core-dev
3232020-09-02T17:42:49 *** Mercury_Vapor has quit IRC
3242020-09-02T17:45:14 *** Mercury_Vapor has joined #bitcoin-core-dev
3252020-09-02T17:51:15 *** mrostecki has quit IRC
3262020-09-02T18:00:01 *** MichealH-iPod has quit IRC
3272020-09-02T18:01:56 *** filchef has joined #bitcoin-core-dev
3282020-09-02T18:09:42 *** spinza has quit IRC
3292020-09-02T18:15:53 *** Murch has quit IRC
3302020-09-02T18:16:59 *** Talkless has quit IRC
3312020-09-02T18:21:51 *** NikolaiToryzin has joined #bitcoin-core-dev
3322020-09-02T18:59:12 *** JD2983 has quit IRC
3332020-09-02T19:05:55 *** JD2983 has joined #bitcoin-core-dev
3342020-09-02T19:06:09 *** arowser has quit IRC
3352020-09-02T19:06:51 *** arowser has joined #bitcoin-core-dev
3362020-09-02T19:15:18 *** bitcoin-git has joined #bitcoin-core-dev
3372020-09-02T19:15:18 <bitcoin-git> [bitcoin] Crypt-iQ opened pull request #19861: build: add /usr/local/ to LCOV_PATTERN for macOS builds (master...macos_lcov_0902) https://github.com/bitcoin/bitcoin/pull/19861
3382020-09-02T19:15:20 *** bitcoin-git has left #bitcoin-core-dev
3392020-09-02T19:26:07 *** sipsorcery has quit IRC
3402020-09-02T19:46:46 *** Guyver2_ has quit IRC
3412020-09-02T20:00:39 *** arowser has quit IRC
3422020-09-02T20:00:56 *** arowser has joined #bitcoin-core-dev
3432020-09-02T20:04:00 *** worc3131 has joined #bitcoin-core-dev
3442020-09-02T20:14:53 *** gleb4 has joined #bitcoin-core-dev
3452020-09-02T20:18:27 *** NikolaiToryzin has quit IRC
3462020-09-02T20:38:08 *** MTecknology1 has joined #bitcoin-core-dev
3472020-09-02T20:54:51 *** sipsorcery has joined #bitcoin-core-dev
3482020-09-02T20:54:58 *** spinza has joined #bitcoin-core-dev
3492020-09-02T20:58:53 *** gzhao408 has quit IRC
3502020-09-02T21:00:02 *** MTecknology1 has quit IRC
3512020-09-02T21:04:10 *** belcher has joined #bitcoin-core-dev
3522020-09-02T21:07:10 *** alko89 has quit IRC
3532020-09-02T21:07:50 *** alko89 has joined #bitcoin-core-dev
3542020-09-02T21:07:52 *** Highway61 has quit IRC
3552020-09-02T21:22:28 *** prae has joined #bitcoin-core-dev
3562020-09-02T21:33:26 *** sipsorcery has quit IRC
3572020-09-02T21:34:09 *** runcrypto has joined #bitcoin-core-dev
3582020-09-02T21:34:39 *** sipsorcery has joined #bitcoin-core-dev
3592020-09-02T21:58:30 *** marcoagner has quit IRC
3602020-09-02T21:59:52 *** adam3us has quit IRC
3612020-09-02T21:59:53 *** comboy has quit IRC
3622020-09-02T21:59:53 *** ariard has quit IRC
3632020-09-02T21:59:59 *** comboy has joined #bitcoin-core-dev
3642020-09-02T22:00:02 *** ariard_ has joined #bitcoin-core-dev
3652020-09-02T22:01:04 *** adam3us has joined #bitcoin-core-dev
3662020-09-02T22:02:23 *** TallTim has quit IRC
3672020-09-02T22:02:38 *** nckx has quit IRC
3682020-09-02T22:03:10 *** nckx has joined #bitcoin-core-dev
3692020-09-02T22:07:30 *** TallTim has joined #bitcoin-core-dev
3702020-09-02T22:08:29 *** t420babe has quit IRC
3712020-09-02T22:08:49 *** t420babe has joined #bitcoin-core-dev
3722020-09-02T22:20:31 *** mdunnio has quit IRC
3732020-09-02T22:24:11 *** Highway61 has joined #bitcoin-core-dev
3742020-09-02T22:34:51 *** sipsorcery has quit IRC
3752020-09-02T22:36:23 *** afk11` is now known as afk11
3762020-09-02T22:50:38 *** AaronvanW has quit IRC
3772020-09-02T22:58:35 *** sipsorcery has joined #bitcoin-core-dev
3782020-09-02T22:59:03 *** vasild has quit IRC
3792020-09-02T23:05:53 *** vasild has joined #bitcoin-core-dev
3802020-09-02T23:11:35 *** runcrypto has quit IRC
3812020-09-02T23:24:46 *** lightlike has quit IRC
3822020-09-02T23:33:22 *** TheRec has joined #bitcoin-core-dev
3832020-09-02T23:33:23 *** TheRec has joined #bitcoin-core-dev
3842020-09-02T23:33:49 *** TheRec_ has quit IRC
3852020-09-02T23:36:17 *** sipsorcery has quit IRC
3862020-09-02T23:48:08 *** arowser has quit IRC
3872020-09-02T23:48:54 *** arowser has joined #bitcoin-core-dev
3882020-09-02T23:55:51 *** Murch has joined #bitcoin-core-dev