1 2018-12-30T00:07:28 *** promag has quit IRC
2 2018-12-30T00:14:51 *** promag has joined #bitcoin-core-dev
3 2018-12-30T00:20:48 *** fanquake has joined #bitcoin-core-dev
4 2018-12-30T00:21:33 *** jarthur has joined #bitcoin-core-dev
5 2018-12-30T00:23:31 *** jarthur has quit IRC
6 2018-12-30T00:30:10 *** jarthur has joined #bitcoin-core-dev
7 2018-12-30T00:37:24 *** eugene9999 has joined #bitcoin-core-dev
8 2018-12-30T00:39:20 <eugene9999> And this is an add on to my previous Qâs - getting rid of a switch statement gets rid of lots of branches but doesnât really mitigate the edge collision problem. I guess the one harness per target methodology is to reduce number of branches + not confuse the fuzzer with certain mutations being used on the wrong message type, right?
9 2018-12-30T00:39:32 *** eugene9999 has quit IRC
10 2018-12-30T01:07:13 *** promag has quit IRC
11 2018-12-30T01:11:09 *** promag has joined #bitcoin-core-dev
12 2018-12-30T01:11:37 *** promag has quit IRC
13 2018-12-30T01:14:21 <gmaxwell> eugene9999: it's not really that much of a concern.
14 2018-12-30T01:30:36 *** Tennis has joined #bitcoin-core-dev
15 2018-12-30T01:36:35 *** mistergold has quit IRC
16 2018-12-30T01:47:18 *** promag has joined #bitcoin-core-dev
17 2018-12-30T01:50:01 *** rh0nj has quit IRC
18 2018-12-30T01:51:07 *** rh0nj has joined #bitcoin-core-dev
19 2018-12-30T01:51:33 *** promag has quit IRC
20 2018-12-30T01:52:02 *** rh0nj has quit IRC
21 2018-12-30T01:53:07 *** rh0nj has joined #bitcoin-core-dev
22 2018-12-30T02:01:36 *** Tennis has quit IRC
23 2018-12-30T02:15:10 *** dviola has quit IRC
24 2018-12-30T03:14:32 *** justanotheruser has joined #bitcoin-core-dev
25 2018-12-30T03:24:13 *** qrestlove has quit IRC
26 2018-12-30T03:36:17 *** promag has joined #bitcoin-core-dev
27 2018-12-30T03:40:30 *** promag has quit IRC
28 2018-12-30T03:52:36 *** qrestlove has joined #bitcoin-core-dev
29 2018-12-30T03:58:52 *** Emcy has quit IRC
30 2018-12-30T04:18:55 *** promag has joined #bitcoin-core-dev
31 2018-12-30T04:23:23 *** promag has quit IRC
32 2018-12-30T04:24:00 *** Eagle[TM] has joined #bitcoin-core-dev
33 2018-12-30T04:26:03 *** EagleTM has quit IRC
34 2018-12-30T04:44:48 *** AaronvanW has quit IRC
35 2018-12-30T04:48:20 *** Emcy has joined #bitcoin-core-dev
36 2018-12-30T04:55:29 *** AaronvanW has joined #bitcoin-core-dev
37 2018-12-30T04:57:08 *** promag has joined #bitcoin-core-dev
38 2018-12-30T04:59:51 *** AaronvanW has quit IRC
39 2018-12-30T05:01:32 *** promag has quit IRC
40 2018-12-30T05:11:56 *** owowo has quit IRC
41 2018-12-30T05:17:47 <CubicEarth> would it be straightforward to implement an RPC command, whose argument would be a block height, that would prevent a node from downloading any blocks above that height?
42 2018-12-30T05:29:02 <fanquake> sipa, wumpus Might be time to just block this guy from the repo.
43 2018-12-30T05:29:05 <fanquake> Spamming, troll PRs, now comments like this: https://github.com/bitcoin/bitcoin/issues/15049#issuecomment-450540096
44 2018-12-30T05:31:47 *** cluelessperson has joined #bitcoin-core-dev
45 2018-12-30T05:37:31 <achow101> fanquake: +1
46 2018-12-30T05:39:23 <gkrizek> fanquake +1
47 2018-12-30T05:43:33 <luke-jr> CubicEarth: features need a use case
48 2018-12-30T05:45:04 *** ap4lmtree has quit IRC
49 2018-12-30T05:45:41 <CubicEarth> luke-jr: the purpose would be to allow a lightning node to manage the disk space bicoind uses. PUNEBLOCKCHAIN gives granular control on the back side...
50 2018-12-30T05:45:42 *** ap4lmtree has joined #bitcoin-core-dev
51 2018-12-30T05:46:53 <luke-jr> think it would be better to let bitcoind manage its own disk space..
52 2018-12-30T05:48:41 <CubicEarth> Do you have a concept of how that would look?
53 2018-12-30T05:49:15 *** promag has joined #bitcoin-core-dev
54 2018-12-30T05:53:20 *** cluelessperson has quit IRC
55 2018-12-30T05:53:27 *** promag has quit IRC
56 2018-12-30T05:54:01 *** rh0nj has quit IRC
57 2018-12-30T05:54:05 <luke-jr> CubicEarth: something like the -prune option, but instead of pruning, waits for the manual prune to free space
58 2018-12-30T05:56:11 *** AaronvanW has joined #bitcoin-core-dev
59 2018-12-30T06:00:48 <CubicEarth> luke-jr: So blocks are downloaded until the space limit is reached... and then when X MBs of blocks are manually pruned off the back, X MBs of blocks can be downloaded on the front?
60 2018-12-30T06:01:20 *** AaronvanW has quit IRC
61 2018-12-30T06:04:54 *** cluelessperson has joined #bitcoin-core-dev
62 2018-12-30T06:06:05 *** ap4lmtree has quit IRC
63 2018-12-30T06:12:29 <luke-jr> CubicEarth: right
64 2018-12-30T06:14:52 *** ap4lmtree has joined #bitcoin-core-dev
65 2018-12-30T06:30:30 <CubicEarth> luke-jr: from the external perspective, that seems just as functional
66 2018-12-30T06:31:28 <luke-jr> CubicEarth: the difference IMO, is that eventually we probably should move to a "prune lock" system, where multiple external programs can prevent pruning until they've caught up
67 2018-12-30T06:34:52 <CubicEarth> Oh right, I remember discussing that before. It's not a bad idea, but the range of usefulness, in terms of number of devices, seems limited. If there are too many devices (somewhere in the 5 - 20 range, I'd guess), they would better be served by an unpruned node
68 2018-12-30T06:35:23 <CubicEarth> Otherwise a device that misbehaves can mess it up for the others
69 2018-12-30T06:35:32 <luke-jr> not really
70 2018-12-30T06:37:21 <CubicEarth> "misbehaving" is too strong a word... they would all have to be sufficiently synchronized
71 2018-12-30T06:49:15 *** cluelessperson has quit IRC
72 2018-12-30T06:59:32 *** TheHoliestRoger has quit IRC
73 2018-12-30T07:07:10 *** TheHoliestRoger has joined #bitcoin-core-dev
74 2018-12-30T07:13:24 *** hebasto has joined #bitcoin-core-dev
75 2018-12-30T07:20:12 *** promag has joined #bitcoin-core-dev
76 2018-12-30T07:24:20 *** promag has quit IRC
77 2018-12-30T07:37:45 *** jarthur has quit IRC
78 2018-12-30T07:51:27 *** promag has joined #bitcoin-core-dev
79 2018-12-30T07:55:47 *** promag has quit IRC
80 2018-12-30T07:58:12 *** AaronvanW has joined #bitcoin-core-dev
81 2018-12-30T08:02:40 *** AaronvanW has quit IRC
82 2018-12-30T08:15:08 *** rh0nj has joined #bitcoin-core-dev
83 2018-12-30T09:20:47 *** cyber55 has quit IRC
84 2018-12-30T09:20:55 *** dermoth has quit IRC
85 2018-12-30T09:22:28 *** cyber55 has joined #bitcoin-core-dev
86 2018-12-30T09:59:06 *** AaronvanW has joined #bitcoin-core-dev
87 2018-12-30T10:03:28 *** AaronvanW has quit IRC
88 2018-12-30T10:09:21 *** spinza has quit IRC
89 2018-12-30T10:20:36 *** spinza has joined #bitcoin-core-dev
90 2018-12-30T10:59:05 *** bitcoin-git has joined #bitcoin-core-dev
91 2018-12-30T10:59:06 <bitcoin-git> [bitcoin] luke-jr opened pull request #15063: GUI: If BIP70 is disabled, attempt to fall back to BIP21 parsing (master...bip70_fallback_to_bip21) https://github.com/bitcoin/bitcoin/pull/15063
92 2018-12-30T10:59:06 *** bitcoin-git has left #bitcoin-core-dev
93 2018-12-30T10:59:55 *** bitcoin-git has joined #bitcoin-core-dev
94 2018-12-30T10:59:56 <bitcoin-git> [bitcoin] luke-jr opened pull request #15064: [PoC] GUI: Migrate BIP70 merchant info to mapValue["to"] (master...bip70_merchant_to_to) https://github.com/bitcoin/bitcoin/pull/15064
95 2018-12-30T10:59:56 *** bitcoin-git has left #bitcoin-core-dev
96 2018-12-30T11:13:42 <wumpus> fanquake: agree
97 2018-12-30T11:17:42 <wumpus> fanquake: blocked on bitcoin and bitcoin-core
98 2018-12-30T11:20:25 *** promag has joined #bitcoin-core-dev
99 2018-12-30T11:29:43 *** bitcoin-git has joined #bitcoin-core-dev
100 2018-12-30T11:29:43 <bitcoin-git> [bitcoin] promag opened pull request #15065: 0.17: Backport #14123 #14133 #14383 #14597 (0.17...backport-14123-14133-14383-14597) https://github.com/bitcoin/bitcoin/pull/15065
101 2018-12-30T11:29:43 *** bitcoin-git has left #bitcoin-core-dev
102 2018-12-30T11:31:51 <fanquake> wumpus thanks. #15053 is a trivial merge btw.
103 2018-12-30T11:31:52 <gribble> https://github.com/bitcoin/bitcoin/issues/15053 | [0.17] Backport #14966 by fanquake · Pull Request #15053 · bitcoin/bitcoin · GitHub
104 2018-12-30T11:32:16 <promag> fanquake: hi, what you use vmware, parallels or other?
105 2018-12-30T11:34:35 <fanquake> promag Have been using Virtualbox for a while. Also use Vagrant for a few things, which uses Virtualbox under the hood.
106 2018-12-30T11:35:15 <promag> fanquake: and performs well with windows?
107 2018-12-30T11:35:49 <fanquake> promag I have some core specific vagrant configurations in https://github.com/fanquake/core-review/
108 2018-12-30T11:36:08 *** Guyver2 has joined #bitcoin-core-dev
109 2018-12-30T11:36:19 <fanquake> promag For Windows testing I use the VMs available from here: https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/
110 2018-12-30T11:36:53 <fanquake> Haven't tried any "native" builds yet, just install WSL and use depends
111 2018-12-30T11:37:00 *** jasonzhouu has quit IRC
112 2018-12-30T11:37:33 *** jasonzhouu has joined #bitcoin-core-dev
113 2018-12-30T11:38:35 <promag> fanquake: ok, thanks for the links!
114 2018-12-30T11:41:57 <fanquake> promag np, let me know if you have any more questions
115 2018-12-30T11:55:15 *** face has quit IRC
116 2018-12-30T12:35:02 *** rh0nj has quit IRC
117 2018-12-30T12:45:21 *** Guyver2 has quit IRC
118 2018-12-30T12:47:22 *** cyber55 has quit IRC
119 2018-12-30T13:01:30 *** Guyver2 has joined #bitcoin-core-dev
120 2018-12-30T13:04:57 *** promag has quit IRC
121 2018-12-30T13:10:39 *** rex4539 has joined #bitcoin-core-dev
122 2018-12-30T14:00:36 *** AaronvanW has joined #bitcoin-core-dev
123 2018-12-30T14:04:47 *** AaronvanW has quit IRC
124 2018-12-30T14:35:16 *** Eagle[TM] has quit IRC
125 2018-12-30T14:47:28 *** AaronvanW has joined #bitcoin-core-dev
126 2018-12-30T15:01:40 *** jasonzhouu has quit IRC
127 2018-12-30T15:01:53 *** jasonzhouu has joined #bitcoin-core-dev
128 2018-12-30T15:11:18 *** grubles has quit IRC
129 2018-12-30T15:34:43 *** grubles has joined #bitcoin-core-dev
130 2018-12-30T15:43:07 *** rh0nj has joined #bitcoin-core-dev
131 2018-12-30T16:15:45 *** Tralfaz has quit IRC
132 2018-12-30T16:34:13 *** bitcoin-git has joined #bitcoin-core-dev
133 2018-12-30T16:34:14 <bitcoin-git> [bitcoin] bitcoinVBR opened pull request #15067: Feature vbr (master...feature_VBR) https://github.com/bitcoin/bitcoin/pull/15067
134 2018-12-30T16:34:14 *** bitcoin-git has left #bitcoin-core-dev
135 2018-12-30T16:35:08 *** bitcoin-git has joined #bitcoin-core-dev
136 2018-12-30T16:35:09 <bitcoin-git> [bitcoin] laanwj pushed 2 new commits to 0.17: https://github.com/bitcoin/bitcoin/compare/fa941016e8c1...623a19bc2b34
137 2018-12-30T16:35:09 <bitcoin-git> bitcoin/0.17 b4602e3 1Il1: fix testmempoolaccept CLI syntax...
138 2018-12-30T16:35:10 <bitcoin-git> bitcoin/0.17 623a19b Wladimir J. van der Laan: Merge #15053: [0.17] Backport #14966...
139 2018-12-30T16:35:10 *** bitcoin-git has left #bitcoin-core-dev
140 2018-12-30T16:53:30 *** lnostdal has quit IRC
141 2018-12-30T17:09:40 *** lnostdal has joined #bitcoin-core-dev
142 2018-12-30T17:37:20 *** laurentmt has joined #bitcoin-core-dev
143 2018-12-30T17:39:16 *** bitcoin-git has joined #bitcoin-core-dev
144 2018-12-30T17:39:16 <bitcoin-git> [bitcoin] MarcoFalke pushed 4 new commits to 0.17: https://github.com/bitcoin/bitcoin/compare/623a19bc2b34...16521ce08676
145 2018-12-30T17:39:17 <bitcoin-git> bitcoin/0.17 ddd008d Pieter Wuille: Add PSBT documentation...
146 2018-12-30T17:39:17 <bitcoin-git> bitcoin/0.17 88c566a priscoan: doc: Fix PSBT howto and example parameters...
147 2018-12-30T17:39:18 <bitcoin-git> bitcoin/0.17 fa0c76a bitcoinhodler: Fix minor grammar error in doc...
148 2018-12-30T17:39:18 *** bitcoin-git has left #bitcoin-core-dev
149 2018-12-30T17:39:30 *** laurentmt has quit IRC
150 2018-12-30T18:00:04 *** echeveria has joined #bitcoin-core-dev
151 2018-12-30T18:00:05 *** echeveria has joined #bitcoin-core-dev
152 2018-12-30T18:07:30 *** promag has joined #bitcoin-core-dev
153 2018-12-30T18:12:30 *** promag has quit IRC
154 2018-12-30T18:14:50 <arubi> I'm catching up with gitian builds and planning on PRing a bunch of sigs hopefully tomorrow or the day after (slow pc). should I create one PR per version or all in one?
155 2018-12-30T18:25:36 *** cluelessperson has joined #bitcoin-core-dev
156 2018-12-30T18:28:03 *** brianhoffman has joined #bitcoin-core-dev
157 2018-12-30T19:16:14 *** michaelsdunn1 has quit IRC
158 2018-12-30T19:16:30 *** spinza has quit IRC
159 2018-12-30T19:20:48 *** promag has joined #bitcoin-core-dev
160 2018-12-30T19:29:50 *** spinza has joined #bitcoin-core-dev
161 2018-12-30T19:31:46 *** michaelsdunn1 has joined #bitcoin-core-dev
162 2018-12-30T19:33:19 *** promag has quit IRC
163 2018-12-30T19:36:00 *** michaelsdunn1 has quit IRC
164 2018-12-30T19:44:01 *** rh0nj has quit IRC
165 2018-12-30T19:45:04 *** hebasto has quit IRC
166 2018-12-30T19:45:08 *** rh0nj has joined #bitcoin-core-dev
167 2018-12-30T19:47:06 *** grubles has quit IRC
168 2018-12-30T19:51:22 *** AaronvanW has quit IRC
169 2018-12-30T20:18:14 *** EagleTM has joined #bitcoin-core-dev
170 2018-12-30T20:24:28 *** AaronvanW has joined #bitcoin-core-dev
171 2018-12-30T20:26:12 *** promag has joined #bitcoin-core-dev
172 2018-12-30T20:26:14 *** promag has quit IRC
173 2018-12-30T21:11:56 *** promag has joined #bitcoin-core-dev
174 2018-12-30T21:12:18 *** promag has quit IRC
175 2018-12-30T21:13:40 *** grubles has joined #bitcoin-core-dev
176 2018-12-30T21:36:03 <wumpus> arubi: all in one is OK, you could use seprate commits per versions if that helps organizing
177 2018-12-30T21:36:20 *** irc_viewer_test has joined #bitcoin-core-dev
178 2018-12-30T21:36:24 *** rex4539 has quit IRC
179 2018-12-30T21:44:45 *** irc_viewer_test has quit IRC
180 2018-12-30T22:02:06 *** narodnik has joined #bitcoin-core-dev
181 2018-12-30T22:02:15 *** promag has joined #bitcoin-core-dev
182 2018-12-30T22:02:21 *** narodnik has left #bitcoin-core-dev
183 2018-12-30T22:14:12 *** promag has quit IRC
184 2018-12-30T22:18:53 *** spinza has quit IRC
185 2018-12-30T22:36:13 *** spinza has joined #bitcoin-core-dev
186 2018-12-30T22:51:41 *** dviola has joined #bitcoin-core-dev
187 2018-12-30T22:57:51 *** Aaronvan_ has joined #bitcoin-core-dev
188 2018-12-30T23:00:53 *** AaronvanW has quit IRC
189 2018-12-30T23:01:36 *** exactly has joined #bitcoin-core-dev
190 2018-12-30T23:10:48 *** bitcoin-git has joined #bitcoin-core-dev
191 2018-12-30T23:10:48 <bitcoin-git> [bitcoin] fanquake closed pull request #15067: Feature vbr (master...feature_VBR) https://github.com/bitcoin/bitcoin/pull/15067
192 2018-12-30T23:10:48 *** bitcoin-git has left #bitcoin-core-dev
193 2018-12-30T23:14:12 *** Guyver2 has quit IRC
194 2018-12-30T23:20:02 *** Aaronvan_ has quit IRC
195 2018-12-30T23:26:33 *** AaronvanW has joined #bitcoin-core-dev
196 2018-12-30T23:26:44 *** exactly has quit IRC
197 2018-12-30T23:46:02 *** rh0nj has quit IRC
198 2018-12-30T23:47:08 *** rh0nj has joined #bitcoin-core-dev
199 2018-12-30T23:59:02 *** opdenkamp has quit IRC