1 2020-09-02T00:00:01 *** alexsuraci has quit IRC
2 2020-09-02T00:00:30 *** dhruv has left #bitcoin-core-dev
3 2020-09-02T00:02:07 *** dhruvm has joined #bitcoin-core-dev
4 2020-09-02T00:02:56 *** Livestradamus has quit IRC
5 2020-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
6 2020-09-02T00:03:07 <dhruvm> this:
7 2020-09-02T00:03:07 <dhruvm> ---
8 2020-09-02T00:03:08 <dhruvm> In file included from scratch.cpp:3:
9 2020-09-02T00:03:08 <dhruvm> ./netaddress.h:12:10: error: 'attributes.h' file not found with <angled> include; use "quotes" instead
10 2020-09-02T00:03:09 <dhruvm> #include <attributes.h>
11 2020-09-02T00:03:09 <dhruvm> ^~~~~~~~~~~~~~
12 2020-09-02T00:03:10 <dhruvm> "attributes.h"
13 2020-09-02T00:03:10 <dhruvm> ---
14 2020-09-02T00:03:11 <dhruvm> Sample `src/scratch.cpp`:
15 2020-09-02T00:03:11 <dhruvm> ```
16 2020-09-02T00:03:12 <dhruvm> #include <iostream>
17 2020-09-02T00:03:12 <dhruvm> #include "prevector.h"
18 2020-09-02T00:03:13 <dhruvm> #include "netaddress.h"
19 2020-09-02T00:03:13 <dhruvm> #include <arpa/inet.h>
20 2020-09-02T00:03:14 <dhruvm> int main() {
21 2020-09-02T00:03:14 <dhruvm> in_addr_t a = inet_addr("127.0.0.1");
22 2020-09-02T00:03:15 <dhruvm> CNetAddr addr{in_addr{a}};
23 2020-09-02T00:03:28 *** Livestradamus has joined #bitcoin-core-dev
24 2020-09-02T00:03:46 *** mdunnio has joined #bitcoin-core-dev
25 2020-09-02T00:04:46 *** Anduck has quit IRC
26 2020-09-02T00:05:17 *** Tennis has quit IRC
27 2020-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
28 2020-09-02T00:05:42 *** Anduck has joined #bitcoin-core-dev
29 2020-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
30 2020-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
31 2020-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)
32 2020-09-02T00:08:05 *** mdunnio has quit IRC
33 2020-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
34 2020-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.
35 2020-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.
36 2020-09-02T00:17:49 <sipa> in particular you need -Isrc here
37 2020-09-02T00:19:46 <dhruvm> As in `g++ -std=c++11 -O1 -lsrc -fsanitize=undefined src/scratch.cpp -o scratch`?
38 2020-09-02T00:20:22 *** kristapsk has joined #bitcoin-core-dev
39 2020-09-02T00:20:41 <sipa> not l, I
40 2020-09-02T00:20:44 <sipa> capital i
41 2020-09-02T00:21:01 <sipa> but i'd be surprised if that's all you need
42 2020-09-02T00:21:11 <dhruvm> It moved me forward :)
43 2020-09-02T00:21:41 <dhruvm> The quotes problem went away - i'll try further with the remaining flags from `make -n`
44 2020-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:"
45 2020-09-02T00:23:40 <dhruvm> Also: `clang: error: linker command failed with exit code 1 (use -v to see invocation)`
46 2020-09-02T00:23:53 <dhruvm> Anyway, thanks sipa! I'll be back with more after trying a bit.
47 2020-09-02T00:35:59 *** EagleTM has quit IRC
48 2020-09-02T00:42:59 *** dhruvm has quit IRC
49 2020-09-02T00:51:20 *** Jackielove4u has quit IRC
50 2020-09-02T00:56:09 *** wgolden has joined #bitcoin-core-dev
51 2020-09-02T01:31:10 *** arowser has quit IRC
52 2020-09-02T01:31:45 *** wgolden has quit IRC
53 2020-09-02T01:31:53 *** arowser has joined #bitcoin-core-dev
54 2020-09-02T01:47:27 *** dhruvm has joined #bitcoin-core-dev
55 2020-09-02T01:48:43 *** jb55 has quit IRC
56 2020-09-02T01:49:24 *** watersnake1 has joined #bitcoin-core-dev
57 2020-09-02T01:56:05 *** dhruvm has quit IRC
58 2020-09-02T01:58:03 *** watersnake1 has left #bitcoin-core-dev
59 2020-09-02T01:58:59 *** devnewton has joined #bitcoin-core-dev
60 2020-09-02T02:03:59 *** jb55 has joined #bitcoin-core-dev
61 2020-09-02T02:21:19 *** shesek has quit IRC
62 2020-09-02T02:26:00 *** Kalhymn has joined #bitcoin-core-dev
63 2020-09-02T02:27:10 <instagibbs> #14687 seems ready for merge
64 2020-09-02T02:27:12 <gribble> https://github.com/bitcoin/bitcoin/issues/14687 | zmq: enable tcp keepalive by mruddy · Pull Request #14687 · bitcoin/bitcoin · GitHub
65 2020-09-02T02:30:42 <instagibbs> 3 tACKs, people running it as custom patch apparently, nothing controversial
66 2020-09-02T02:37:02 *** Kalhymn has left #bitcoin-core-dev
67 2020-09-02T03:00:02 *** devnewton has quit IRC
68 2020-09-02T03:19:16 *** sendak has joined #bitcoin-core-dev
69 2020-09-02T03:21:05 *** Highway61 has quit IRC
70 2020-09-02T03:21:07 *** yanmaani has quit IRC
71 2020-09-02T03:21:57 *** yanmaani has joined #bitcoin-core-dev
72 2020-09-02T03:49:12 *** arowser has quit IRC
73 2020-09-02T03:49:54 *** arowser has joined #bitcoin-core-dev
74 2020-09-02T04:01:47 <kallewoof> Apple responded to my bug report regarding ftruncate on macos: https://openradar.appspot.com/radar?id=4930713610616832
75 2020-09-02T04:01:58 <kallewoof> "Works as currently designed"
76 2020-09-02T04:02:18 <kallewoof> Apparently they intend to implement posix_fallocate() at some point tho, apparently.
77 2020-09-02T04:21:35 <luke-jr> kallewoof: interesting
78 2020-09-02T05:25:31 *** sendak has quit IRC
79 2020-09-02T06:00:19 *** mdunnio has joined #bitcoin-core-dev
80 2020-09-02T06:00:47 *** fjahr has quit IRC
81 2020-09-02T06:00:55 *** mariorz has quit IRC
82 2020-09-02T06:01:27 *** hebasto has quit IRC
83 2020-09-02T06:02:38 *** NicolasDorier has quit IRC
84 2020-09-02T06:02:38 *** endogenic has quit IRC
85 2020-09-02T06:02:56 *** digi_james has quit IRC
86 2020-09-02T06:03:03 *** mmitech__ has quit IRC
87 2020-09-02T06:03:06 *** NicolasDorier has joined #bitcoin-core-dev
88 2020-09-02T06:03:08 *** fjahr has joined #bitcoin-core-dev
89 2020-09-02T06:03:16 *** digi_james has joined #bitcoin-core-dev
90 2020-09-02T06:03:19 *** endogenic has joined #bitcoin-core-dev
91 2020-09-02T06:03:48 *** mariorz has joined #bitcoin-core-dev
92 2020-09-02T06:04:33 *** hebasto has joined #bitcoin-core-dev
93 2020-09-02T06:05:15 *** mmitech__ has joined #bitcoin-core-dev
94 2020-09-02T06:08:38 *** mdunnio has quit IRC
95 2020-09-02T06:20:56 *** dhruvm has joined #bitcoin-core-dev
96 2020-09-02T06:21:26 *** Morgon1 has joined #bitcoin-core-dev
97 2020-09-02T06:26:05 *** dviola has quit IRC
98 2020-09-02T06:28:29 *** dhruvm has quit IRC
99 2020-09-02T06:38:10 *** Guyver2 has joined #bitcoin-core-dev
100 2020-09-02T06:40:25 *** dviola has joined #bitcoin-core-dev
101 2020-09-02T06:40:51 *** opsec_x12 has quit IRC
102 2020-09-02T06:41:11 *** opsec_x12 has joined #bitcoin-core-dev
103 2020-09-02T06:48:02 *** Jackielove4u has joined #bitcoin-core-dev
104 2020-09-02T07:05:56 *** jonatack has quit IRC
105 2020-09-02T07:07:57 *** sipsorcery has joined #bitcoin-core-dev
106 2020-09-02T07:09:54 *** bitcoin-git has joined #bitcoin-core-dev
107 2020-09-02T07:09:54 <bitcoin-git> [bitcoin] jonasschnelli pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/48c108363268...3a3e21dafb72
108 2020-09-02T07:09:54 <bitcoin-git> bitcoin/master c276df7 mruddy: zmq: enable tcp keepalive
109 2020-09-02T07:09:55 <bitcoin-git> bitcoin/master 3a3e21d Jonas Schnelli: Merge #14687: zmq: enable tcp keepalive
110 2020-09-02T07:09:56 *** bitcoin-git has left #bitcoin-core-dev
111 2020-09-02T07:11:48 *** bitcoin-git has joined #bitcoin-core-dev
112 2020-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
113 2020-09-02T07:11:50 *** bitcoin-git has left #bitcoin-core-dev
114 2020-09-02T07:14:41 *** marcoagner has joined #bitcoin-core-dev
115 2020-09-02T07:33:22 *** jb55 has quit IRC
116 2020-09-02T07:33:52 *** jb55 has joined #bitcoin-core-dev
117 2020-09-02T07:45:14 *** robot-dreams has quit IRC
118 2020-09-02T07:45:25 *** jonatack has joined #bitcoin-core-dev
119 2020-09-02T07:46:13 *** andreacab has joined #bitcoin-core-dev
120 2020-09-02T07:46:19 *** andreacab has joined #bitcoin-core-dev
121 2020-09-02T07:46:42 *** EagleTM has joined #bitcoin-core-dev
122 2020-09-02T07:48:01 *** gzhao408 has quit IRC
123 2020-09-02T07:51:52 *** robot-dreams has joined #bitcoin-core-dev
124 2020-09-02T07:55:25 *** palazzovincenzo has joined #bitcoin-core-dev
125 2020-09-02T07:57:14 *** vincenzopalazzo has quit IRC
126 2020-09-02T07:59:50 *** andreacab has quit IRC
127 2020-09-02T08:00:03 *** andreacab has joined #bitcoin-core-dev
128 2020-09-02T08:06:03 *** mrostecki_ has quit IRC
129 2020-09-02T08:12:05 *** kljasdfvv has quit IRC
130 2020-09-02T08:13:33 *** kljasdfvv has joined #bitcoin-core-dev
131 2020-09-02T08:17:19 *** sipsorcery has quit IRC
132 2020-09-02T08:19:53 *** robot-dreams has quit IRC
133 2020-09-02T08:20:59 *** palazzovincenzo has quit IRC
134 2020-09-02T08:29:24 *** sipsorcery has joined #bitcoin-core-dev
135 2020-09-02T08:42:29 *** EagleTM has quit IRC
136 2020-09-02T08:45:20 *** Bullit has joined #bitcoin-core-dev
137 2020-09-02T08:47:29 *** Bullit has quit IRC
138 2020-09-02T08:48:10 *** Bullit has joined #bitcoin-core-dev
139 2020-09-02T09:00:02 *** Morgon1 has quit IRC
140 2020-09-02T09:07:01 <jnewbery> wumpus: #19610 might be ready for merge
141 2020-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
142 2020-09-02T09:12:28 *** robot-dreams has joined #bitcoin-core-dev
143 2020-09-02T09:18:39 *** robot-dreams has quit IRC
144 2020-09-02T09:22:05 *** sendak has joined #bitcoin-core-dev
145 2020-09-02T09:25:31 *** mrostecki has joined #bitcoin-core-dev
146 2020-09-02T09:32:45 *** Guyver2_ has joined #bitcoin-core-dev
147 2020-09-02T09:33:53 *** sipsorcery has quit IRC
148 2020-09-02T09:34:11 *** sipsorcery has joined #bitcoin-core-dev
149 2020-09-02T09:36:32 *** Guyver2 has quit IRC
150 2020-09-02T09:37:30 *** andreacab has quit IRC
151 2020-09-02T09:40:26 *** andreacab has joined #bitcoin-core-dev
152 2020-09-02T09:43:09 *** andreacab has quit IRC
153 2020-09-02T09:43:18 *** andreacab has joined #bitcoin-core-dev
154 2020-09-02T09:49:34 *** robot-dreams has joined #bitcoin-core-dev
155 2020-09-02T09:54:00 *** robot-dreams has quit IRC
156 2020-09-02T09:57:18 *** Guyver2_ has quit IRC
157 2020-09-02T10:01:40 *** kristapsk has quit IRC
158 2020-09-02T10:02:00 *** kristapsk has joined #bitcoin-core-dev
159 2020-09-02T10:02:06 *** victorSN has quit IRC
160 2020-09-02T10:02:53 *** victorSN has joined #bitcoin-core-dev
161 2020-09-02T10:12:19 *** andreacab has quit IRC
162 2020-09-02T10:16:18 *** andreacab has joined #bitcoin-core-dev
163 2020-09-02T10:18:43 *** Alf41Ryan has joined #bitcoin-core-dev
164 2020-09-02T10:21:27 *** andreacab has quit IRC
165 2020-09-02T10:22:55 *** jonatack has quit IRC
166 2020-09-02T10:24:58 *** robot-dreams has joined #bitcoin-core-dev
167 2020-09-02T10:29:49 *** robot-dreams has quit IRC
168 2020-09-02T10:35:35 *** andreacab has joined #bitcoin-core-dev
169 2020-09-02T10:37:10 *** arowser has quit IRC
170 2020-09-02T10:37:54 *** arowser has joined #bitcoin-core-dev
171 2020-09-02T10:44:27 *** dviola has left #bitcoin-core-dev
172 2020-09-02T10:44:47 *** dviola has joined #bitcoin-core-dev
173 2020-09-02T10:53:10 <wumpus> jnewbery: looks like it!
174 2020-09-02T10:59:03 *** vasild has quit IRC
175 2020-09-02T11:01:00 *** vasild has joined #bitcoin-core-dev
176 2020-09-02T11:07:12 *** andreacab has quit IRC
177 2020-09-02T11:07:38 *** andreacab has joined #bitcoin-core-dev
178 2020-09-02T11:12:07 *** andreacab has quit IRC
179 2020-09-02T11:12:45 *** robot-dreams has joined #bitcoin-core-dev
180 2020-09-02T11:15:12 *** andreacab has joined #bitcoin-core-dev
181 2020-09-02T11:17:24 *** robot-dreams has quit IRC
182 2020-09-02T11:23:51 *** andreacab has quit IRC
183 2020-09-02T11:24:18 *** andreacab has joined #bitcoin-core-dev
184 2020-09-02T11:28:11 *** owowo has quit IRC
185 2020-09-02T11:28:34 *** andreaca_ has joined #bitcoin-core-dev
186 2020-09-02T11:28:42 *** andreacab has quit IRC
187 2020-09-02T11:30:57 *** andreaca_ has quit IRC
188 2020-09-02T11:43:13 *** Alf41Ryan has quit IRC
189 2020-09-02T11:46:25 *** bitcoin-git has joined #bitcoin-core-dev
190 2020-09-02T11:46:26 <bitcoin-git> [bitcoin] laanwj pushed 11 commits to master: https://github.com/bitcoin/bitcoin/compare/3a3e21dafb72...505b39e72b48
191 2020-09-02T11:46:26 <bitcoin-git> bitcoin/master 471714e Jon Atack: p2p: add CInv block message helper methods
192 2020-09-02T11:46:26 <bitcoin-git> bitcoin/master 39f1dc9 Jon Atack: p2p: remove nFetchFlags from NetMsgType TX and INV processing
193 2020-09-02T11:46:28 <bitcoin-git> bitcoin/master 42ca561 John Newbery: [net processing] Split AlreadyHave() into separate block and tx functions
194 2020-09-02T11:46:29 *** bitcoin-git has left #bitcoin-core-dev
195 2020-09-02T11:46:45 *** bitcoin-git has joined #bitcoin-core-dev
196 2020-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
197 2020-09-02T11:46:46 *** bitcoin-git has left #bitcoin-core-dev
198 2020-09-02T11:52:13 *** arowser has quit IRC
199 2020-09-02T11:52:54 *** arowser has joined #bitcoin-core-dev
200 2020-09-02T12:00:02 *** sendak has quit IRC
201 2020-09-02T12:00:54 *** Guyver2 has joined #bitcoin-core-dev
202 2020-09-02T12:17:49 *** robot-dreams has joined #bitcoin-core-dev
203 2020-09-02T12:20:25 *** bitcoin-git has joined #bitcoin-core-dev
204 2020-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
205 2020-09-02T12:20:27 *** bitcoin-git has left #bitcoin-core-dev
206 2020-09-02T12:21:56 *** Kabaka has joined #bitcoin-core-dev
207 2020-09-02T12:22:20 *** robot-dreams has quit IRC
208 2020-09-02T12:36:22 *** bitcoin-git has joined #bitcoin-core-dev
209 2020-09-02T12:36:23 <bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/505b39e72b48...c17a00375808
210 2020-09-02T12:36:23 <bitcoin-git> bitcoin/master d780293 Jon Atack: net: improve nLastBlockTime and nLastTXTime documentation
211 2020-09-02T12:36:24 <bitcoin-git> bitcoin/master c17a003 fanquake: Merge #19857: net: improve nLastBlockTime and nLastTXTime documentation
212 2020-09-02T12:36:26 *** bitcoin-git has left #bitcoin-core-dev
213 2020-09-02T12:36:42 *** bitcoin-git has joined #bitcoin-core-dev
214 2020-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
215 2020-09-02T12:36:43 *** bitcoin-git has left #bitcoin-core-dev
216 2020-09-02T12:37:28 *** sipsorcery has quit IRC
217 2020-09-02T12:39:28 *** sipsorcery has joined #bitcoin-core-dev
218 2020-09-02T12:40:45 *** nanotube has quit IRC
219 2020-09-02T12:45:58 *** nanotube has joined #bitcoin-core-dev
220 2020-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
221 2020-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?
222 2020-09-02T12:51:12 <hebasto> cirrus will turn green after success build
223 2020-09-02T12:55:24 <ryanofsky> oh that's good, thanks
224 2020-09-02T13:00:31 *** Highway61 has joined #bitcoin-core-dev
225 2020-09-02T13:03:47 *** bitcoin-git has joined #bitcoin-core-dev
226 2020-09-02T13:03:48 <bitcoin-git> [bitcoin] fanquake pushed 6 commits to master: https://github.com/bitcoin/bitcoin/compare/c17a00375808...8845b38b599e
227 2020-09-02T13:03:48 <bitcoin-git> bitcoin/master 3ecf0ec Carl Dong: depends: Use $($(package)_cmake) instead of cmake
228 2020-09-02T13:03:49 <bitcoin-git> bitcoin/master 8c7cd0c Carl Dong: depends: More robust cmake invocation
229 2020-09-02T13:03:50 <bitcoin-git> bitcoin/master 8e121e5 Carl Dong: depends: Cleanup CMake invocation
230 2020-09-02T13:03:51 *** bitcoin-git has left #bitcoin-core-dev
231 2020-09-02T13:04:07 *** bitcoin-git has joined #bitcoin-core-dev
232 2020-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
233 2020-09-02T13:04:08 *** bitcoin-git has left #bitcoin-core-dev
234 2020-09-02T13:09:27 *** arowser has quit IRC
235 2020-09-02T13:10:13 *** arowser has joined #bitcoin-core-dev
236 2020-09-02T13:11:15 *** arowser has quit IRC
237 2020-09-02T13:11:57 *** arowser has joined #bitcoin-core-dev
238 2020-09-02T13:14:15 *** arowser has quit IRC
239 2020-09-02T13:14:57 *** arowser has joined #bitcoin-core-dev
240 2020-09-02T13:15:03 *** davterra has quit IRC
241 2020-09-02T13:15:18 *** bitcoin-git has joined #bitcoin-core-dev
242 2020-09-02T13:15:18 <bitcoin-git> [bitcoin] laanwj pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/8845b38b599e...c157a5069454
243 2020-09-02T13:15:19 <bitcoin-git> bitcoin/master 413e0d1 João Barbosa: Avoid callback when -blocknotify is empty
244 2020-09-02T13:15:19 <bitcoin-git> bitcoin/master c157a50 Wladimir J. van der Laan: Merge #19840: Avoid callback when -blocknotify is empty
245 2020-09-02T13:15:21 *** bitcoin-git has left #bitcoin-core-dev
246 2020-09-02T13:15:38 *** bitcoin-git has joined #bitcoin-core-dev
247 2020-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
248 2020-09-02T13:15:39 *** bitcoin-git has left #bitcoin-core-dev
249 2020-09-02T13:15:53 *** davterra has joined #bitcoin-core-dev
250 2020-09-02T13:17:23 *** jonatack has joined #bitcoin-core-dev
251 2020-09-02T13:22:44 *** roconnor has quit IRC
252 2020-09-02T13:25:45 *** bentatum has joined #bitcoin-core-dev
253 2020-09-02T13:28:21 *** lightlike has joined #bitcoin-core-dev
254 2020-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
255 2020-09-02T13:35:08 <luke-jr> elichai2: I did try
256 2020-09-02T13:35:16 <luke-jr> https://github.com/thepowersgang/mrustc/pull/159
257 2020-09-02T13:35:41 <elichai2> oh, that's cool :)
258 2020-09-02T13:37:26 *** ppisati is now known as flag
259 2020-09-02T13:46:27 *** mdunnio has joined #bitcoin-core-dev
260 2020-09-02T13:48:26 *** lightlike has quit IRC
261 2020-09-02T13:55:47 *** jonatack has quit IRC
262 2020-09-02T13:56:20 *** jonatack_ has joined #bitcoin-core-dev
263 2020-09-02T14:01:02 *** andreacab has joined #bitcoin-core-dev
264 2020-09-02T14:01:29 *** arowser has quit IRC
265 2020-09-02T14:02:11 *** arowser has joined #bitcoin-core-dev
266 2020-09-02T14:02:17 *** arowser has quit IRC
267 2020-09-02T14:02:58 *** arowser has joined #bitcoin-core-dev
268 2020-09-02T14:03:15 *** mdunnio has quit IRC
269 2020-09-02T14:03:28 *** mdunnio has joined #bitcoin-core-dev
270 2020-09-02T14:05:39 *** andreacab has quit IRC
271 2020-09-02T14:05:59 *** robot-dreams has joined #bitcoin-core-dev
272 2020-09-02T14:06:28 *** bitcoin-git has joined #bitcoin-core-dev
273 2020-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
274 2020-09-02T14:06:29 *** bitcoin-git has left #bitcoin-core-dev
275 2020-09-02T14:10:11 *** robot-dreams has quit IRC
276 2020-09-02T14:22:53 *** robot-dreams has joined #bitcoin-core-dev
277 2020-09-02T14:23:48 *** lightlike has joined #bitcoin-core-dev
278 2020-09-02T14:28:52 *** AaronvanW has joined #bitcoin-core-dev
279 2020-09-02T14:36:53 *** EagleTM has joined #bitcoin-core-dev
280 2020-09-02T14:37:12 *** vincenzopalazzo has joined #bitcoin-core-dev
281 2020-09-02T14:37:29 *** robot-dreams has quit IRC
282 2020-09-02T14:38:06 *** robot-dreams has joined #bitcoin-core-dev
283 2020-09-02T14:39:55 *** bentatum has quit IRC
284 2020-09-02T14:42:56 *** robot-dreams has quit IRC
285 2020-09-02T15:00:02 *** Kabaka has quit IRC
286 2020-09-02T15:05:47 *** jonatack_ has quit IRC
287 2020-09-02T15:20:47 *** Talkless has joined #bitcoin-core-dev
288 2020-09-02T15:35:38 *** jonatack_ has joined #bitcoin-core-dev
289 2020-09-02T15:35:48 *** dhruvm has joined #bitcoin-core-dev
290 2020-09-02T15:38:15 *** jonatack_ has quit IRC
291 2020-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
292 2020-09-02T15:39:03 *** jonatack has joined #bitcoin-core-dev
293 2020-09-02T15:41:57 *** bitcoin-git has joined #bitcoin-core-dev
294 2020-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
295 2020-09-02T15:41:59 *** bitcoin-git has left #bitcoin-core-dev
296 2020-09-02T15:42:16 *** bitcoin-git has joined #bitcoin-core-dev
297 2020-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
298 2020-09-02T15:42:17 *** bitcoin-git has left #bitcoin-core-dev
299 2020-09-02T15:46:19 <ryanofsky> dhruvm, restarted the travis ci. don't know why the cirrus ci is missing (seems lucky though)
300 2020-09-02T15:47:23 <dhruvm> thanks ryanofsky
301 2020-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.
302 2020-09-02T15:49:16 *** robot-dreams has joined #bitcoin-core-dev
303 2020-09-02T15:53:37 *** ovi has quit IRC
304 2020-09-02T15:57:10 *** MichealH-iPod has joined #bitcoin-core-dev
305 2020-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
306 2020-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.
307 2020-09-02T16:10:59 *** Guyver2_ has joined #bitcoin-core-dev
308 2020-09-02T16:13:46 *** Guyver2 has quit IRC
309 2020-09-02T16:18:18 *** Guyver2_ has quit IRC
310 2020-09-02T16:18:35 *** Guyver2_ has joined #bitcoin-core-dev
311 2020-09-02T16:20:30 *** gzhao408 has joined #bitcoin-core-dev
312 2020-09-02T16:41:56 *** EagleTM has quit IRC
313 2020-09-02T16:43:18 *** robot-dreams has quit IRC
314 2020-09-02T16:43:33 *** robot-dreams has joined #bitcoin-core-dev
315 2020-09-02T16:49:23 <wumpus> right, looks like it is simply not running, i hope it's an intermittent issue
316 2020-09-02T17:07:04 *** justanotheruser has quit IRC
317 2020-09-02T17:09:17 *** bosch has joined #bitcoin-core-dev
318 2020-09-02T17:24:39 *** Talkless has quit IRC
319 2020-09-02T17:25:04 *** justanotheruser has joined #bitcoin-core-dev
320 2020-09-02T17:25:22 *** Talkless has joined #bitcoin-core-dev
321 2020-09-02T17:29:56 *** dhruvm has quit IRC
322 2020-09-02T17:38:26 *** Asbestos_Vapor has joined #bitcoin-core-dev
323 2020-09-02T17:42:49 *** Mercury_Vapor has quit IRC
324 2020-09-02T17:45:14 *** Mercury_Vapor has joined #bitcoin-core-dev
325 2020-09-02T17:51:15 *** mrostecki has quit IRC
326 2020-09-02T18:00:01 *** MichealH-iPod has quit IRC
327 2020-09-02T18:01:56 *** filchef has joined #bitcoin-core-dev
328 2020-09-02T18:09:42 *** spinza has quit IRC
329 2020-09-02T18:15:53 *** Murch has quit IRC
330 2020-09-02T18:16:59 *** Talkless has quit IRC
331 2020-09-02T18:21:51 *** NikolaiToryzin has joined #bitcoin-core-dev
332 2020-09-02T18:59:12 *** JD2983 has quit IRC
333 2020-09-02T19:05:55 *** JD2983 has joined #bitcoin-core-dev
334 2020-09-02T19:06:09 *** arowser has quit IRC
335 2020-09-02T19:06:51 *** arowser has joined #bitcoin-core-dev
336 2020-09-02T19:15:18 *** bitcoin-git has joined #bitcoin-core-dev
337 2020-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
338 2020-09-02T19:15:20 *** bitcoin-git has left #bitcoin-core-dev
339 2020-09-02T19:26:07 *** sipsorcery has quit IRC
340 2020-09-02T19:46:46 *** Guyver2_ has quit IRC
341 2020-09-02T20:00:39 *** arowser has quit IRC
342 2020-09-02T20:00:56 *** arowser has joined #bitcoin-core-dev
343 2020-09-02T20:04:00 *** worc3131 has joined #bitcoin-core-dev
344 2020-09-02T20:14:53 *** gleb4 has joined #bitcoin-core-dev
345 2020-09-02T20:18:27 *** NikolaiToryzin has quit IRC
346 2020-09-02T20:38:08 *** MTecknology1 has joined #bitcoin-core-dev
347 2020-09-02T20:54:51 *** sipsorcery has joined #bitcoin-core-dev
348 2020-09-02T20:54:58 *** spinza has joined #bitcoin-core-dev
349 2020-09-02T20:58:53 *** gzhao408 has quit IRC
350 2020-09-02T21:00:02 *** MTecknology1 has quit IRC
351 2020-09-02T21:04:10 *** belcher has joined #bitcoin-core-dev
352 2020-09-02T21:07:10 *** alko89 has quit IRC
353 2020-09-02T21:07:50 *** alko89 has joined #bitcoin-core-dev
354 2020-09-02T21:07:52 *** Highway61 has quit IRC
355 2020-09-02T21:22:28 *** prae has joined #bitcoin-core-dev
356 2020-09-02T21:33:26 *** sipsorcery has quit IRC
357 2020-09-02T21:34:09 *** runcrypto has joined #bitcoin-core-dev
358 2020-09-02T21:34:39 *** sipsorcery has joined #bitcoin-core-dev
359 2020-09-02T21:58:30 *** marcoagner has quit IRC
360 2020-09-02T21:59:52 *** adam3us has quit IRC
361 2020-09-02T21:59:53 *** comboy has quit IRC
362 2020-09-02T21:59:53 *** ariard has quit IRC
363 2020-09-02T21:59:59 *** comboy has joined #bitcoin-core-dev
364 2020-09-02T22:00:02 *** ariard_ has joined #bitcoin-core-dev
365 2020-09-02T22:01:04 *** adam3us has joined #bitcoin-core-dev
366 2020-09-02T22:02:23 *** TallTim has quit IRC
367 2020-09-02T22:02:38 *** nckx has quit IRC
368 2020-09-02T22:03:10 *** nckx has joined #bitcoin-core-dev
369 2020-09-02T22:07:30 *** TallTim has joined #bitcoin-core-dev
370 2020-09-02T22:08:29 *** t420babe has quit IRC
371 2020-09-02T22:08:49 *** t420babe has joined #bitcoin-core-dev
372 2020-09-02T22:20:31 *** mdunnio has quit IRC
373 2020-09-02T22:24:11 *** Highway61 has joined #bitcoin-core-dev
374 2020-09-02T22:34:51 *** sipsorcery has quit IRC
375 2020-09-02T22:36:23 *** afk11` is now known as afk11
376 2020-09-02T22:50:38 *** AaronvanW has quit IRC
377 2020-09-02T22:58:35 *** sipsorcery has joined #bitcoin-core-dev
378 2020-09-02T22:59:03 *** vasild has quit IRC
379 2020-09-02T23:05:53 *** vasild has joined #bitcoin-core-dev
380 2020-09-02T23:11:35 *** runcrypto has quit IRC
381 2020-09-02T23:24:46 *** lightlike has quit IRC
382 2020-09-02T23:33:22 *** TheRec has joined #bitcoin-core-dev
383 2020-09-02T23:33:23 *** TheRec has joined #bitcoin-core-dev
384 2020-09-02T23:33:49 *** TheRec_ has quit IRC
385 2020-09-02T23:36:17 *** sipsorcery has quit IRC
386 2020-09-02T23:48:08 *** arowser has quit IRC
387 2020-09-02T23:48:54 *** arowser has joined #bitcoin-core-dev
388 2020-09-02T23:55:51 *** Murch has joined #bitcoin-core-dev