1 2018-11-17T00:11:33  *** promag has joined #bitcoin-dev
  2 2018-11-17T00:27:14  *** michaelsdunn1 has joined #bitcoin-dev
  3 2018-11-17T00:31:56  *** michaelsdunn1 has quit IRC
  4 2018-11-17T00:38:24  *** spinza has quit IRC
  5 2018-11-17T00:42:02  *** spinza has joined #bitcoin-dev
  6 2018-11-17T01:01:27  *** harrymm has quit IRC
  7 2018-11-17T01:05:06  *** promag has quit IRC
  8 2018-11-17T01:07:13  <esotericnonsense> phm87: so i'm not sure why you're trying to do this, but it's not going to work
  9 2018-11-17T01:07:38  <esotericnonsense> phm87: if you give someone RPC access there are various other ways for them to exfiltrate funds
 10 2018-11-17T01:08:58  <esotericnonsense> phm87: the way you would actually achieve this is via an intermediate layer
 11 2018-11-17T01:09:25  *** Dizzle has joined #bitcoin-dev
 12 2018-11-17T01:25:12  <satwo> Hello all. In debug.log the "UpdateTip" log is often directly followed by a message a message such as "Erased 3 orphan tx included or conflicted by block". What is this referring to exactly? A block gets mined in which a tx in your orphan pool is confirmed?
 13 2018-11-17T01:29:56  *** thomasan_ has joined #bitcoin-dev
 14 2018-11-17T01:30:45  *** IGHOR has quit IRC
 15 2018-11-17T01:35:15  *** thomasan_ has quit IRC
 16 2018-11-17T01:35:42  *** IGHOR has joined #bitcoin-dev
 17 2018-11-17T01:39:49  <esotericnonsense> satwo: so i've just briefly perused src/net_processing.cpp
 18 2018-11-17T01:41:18  <esotericnonsense> if i'm not wrong, an orphan tx is a transaction for which the parent is not known to the node (i'm not sure why the node has these, but yeah)
 19 2018-11-17T01:41:35  <esotericnonsense> anyway, when that message appears it's because the node can now see the parent
 20 2018-11-17T02:00:40  *** zivl_ has quit IRC
 21 2018-11-17T02:12:30  *** Krellan has quit IRC
 22 2018-11-17T02:12:46  <satwo> esotericnonsense: Thanks, that's what I was thinking. But does it mean that your node never saw the parent, but the miner did? Implying that perhaps a miner mined the parent out-of-band?
 23 2018-11-17T02:58:20  *** iv3c has quit IRC
 24 2018-11-17T03:05:33  *** aielima has quit IRC
 25 2018-11-17T03:06:50  *** koodez has joined #bitcoin-dev
 26 2018-11-17T03:08:04  *** DTZUZO has quit IRC
 27 2018-11-17T03:37:53  *** fabianfabian has quit IRC
 28 2018-11-17T04:00:35  *** thomasan_ has joined #bitcoin-dev
 29 2018-11-17T04:18:18  *** alferz has joined #bitcoin-dev
 30 2018-11-17T04:22:06  *** michaelsdunn1 has joined #bitcoin-dev
 31 2018-11-17T04:26:07  *** michaelsdunn1 has quit IRC
 32 2018-11-17T04:29:27  *** alferz has quit IRC
 33 2018-11-17T04:49:49  *** morcos has quit IRC
 34 2018-11-17T04:50:24  *** ghost43 has quit IRC
 35 2018-11-17T04:54:48  *** morcos has joined #bitcoin-dev
 36 2018-11-17T04:55:56  *** ghost43 has joined #bitcoin-dev
 37 2018-11-17T05:04:21  *** thomasan_ has quit IRC
 38 2018-11-17T05:36:17  *** Belxjander has quit IRC
 39 2018-11-17T05:36:43  *** Belxjander has joined #bitcoin-dev
 40 2018-11-17T06:01:22  *** koodez has quit IRC
 41 2018-11-17T06:14:01  *** rh0nj has quit IRC
 42 2018-11-17T06:15:08  *** rh0nj has joined #bitcoin-dev
 43 2018-11-17T06:57:29  *** Krellan has joined #bitcoin-dev
 44 2018-11-17T07:10:51  *** satwo has quit IRC
 45 2018-11-17T07:24:16  *** satwo has joined #bitcoin-dev
 46 2018-11-17T07:35:02  <rhavar> Kind of a stupid idea, but I think it's interesting. Instead of "First Seen Safe" type rules for transactions, preferring the transaction with the lowest txhash.
 47 2018-11-17T07:35:41  <rhavar> That would help ensure that nodes mempools are more synchronized in an attack where conflicting transactions are broadcasted separately
 48 2018-11-17T07:37:51  <rhavar> And probably not a huge DoS vector, as you'd probably really struggle to generate more than a dozen transactions with consecutively lower hashes than each other
 49 2018-11-17T07:44:03  *** ac3Takwas has quit IRC
 50 2018-11-17T07:49:15  *** Murch has joined #bitcoin-dev
 51 2018-11-17T07:50:17  <luke-jr> rhavar: it's not expected that nodes will have identical mempools
 52 2018-11-17T07:50:28  <luke-jr> rhavar: and anything other than fee has DoS issues
 53 2018-11-17T07:50:45  <rhavar> Sure, but it's preferable if they're more similar
 54 2018-11-17T07:50:53  <luke-jr> not particularly
 55 2018-11-17T07:51:02  <rhavar> This would still have the same fee rules, it's just a replacement for FSS
 56 2018-11-17T07:51:12  <rhavar> e.g.  RBF rules would stay the same (for DoS reasons)
 57 2018-11-17T07:51:28  <rhavar> Just if 2 transactions were raced with the same feerate, it would prefer the lower txhash
 58 2018-11-17T07:51:53  <phm87> esotericnonsense ok thx. I want to do this to add protections to bitcoin. exchanges do it but it should be opensource
 59 2018-11-17T07:52:08  <rhavar> Having more similiar mempools helps with fast block relay
 60 2018-11-17T07:52:37  <rhavar> And it's also useful for merchants, to have a better picture of what's expected to go into the next block
 61 2018-11-17T07:53:00  <rhavar> (i.e. instead of waiting for a block to know someone is trying to double spend, it's nice to see immediately)
 62 2018-11-17T07:53:22  <rhavar> But anyway, it's definitely not a good idea. I just thought it's interesting
 63 2018-11-17T07:54:11  *** Murch has quit IRC
 64 2018-11-17T07:57:48  <rhavar> You could also do something similar with block races actually. Like say 2 blocks have the same amount of work --- sort them -- then compute hash(blockA || blockB))   and if the hash is less than 2^255, blockA wins. If it's greater then block B wins
 65 2018-11-17T07:57:51  *** zivl has joined #bitcoin-dev
 66 2018-11-17T07:58:30  <rhavar> Kind of stupid though. But would help against low-hash-power selfish mining, i believe
 67 2018-11-17T07:58:40  <rhavar> but it also falls apart in a 3-way block race lol
 68 2018-11-17T07:59:09  <rhavar> (or at least, is very weird :/)
 69 2018-11-17T08:00:18  <arubi> something like that would introduce one-block reorgs
 70 2018-11-17T08:00:31  <rhavar> It would make it a lot easier to have one-block reorgs, yeah
 71 2018-11-17T08:01:24  <rhavar> I think it'd reduce the security of 1 conf hugely
 72 2018-11-17T08:02:44  <rhavar> to re-org the current best block, you need to find two blocks  before the network finds one.  While with the "hash sort" method, you just need to find 1 block  to get a 50% chance of reorging it
 73 2018-11-17T08:07:28  <arubi> I think this security decrease extends to any length of chain, say when someone is mining a secret chain intended to replace the main chain
 74 2018-11-17T08:10:13  <rhavar> probably
 75 2018-11-17T08:10:25  <rhavar> Definitely sucks, but has some interesting properties. Like it's much fairer to minority miners i think
 76 2018-11-17T08:10:56  <rhavar> They'd be much less affected by block propagation times
 77 2018-11-17T08:11:19  <rhavar> (where currently big and connected miners have a rather inherent advantage)
 78 2018-11-17T08:16:07  <arubi> I'm not sure right now, but I think this introduction of same height chain block reorg really helps for selfish mining
 79 2018-11-17T08:16:22  <arubi> err, block chain..
 80 2018-11-17T08:16:46  <rhavar> nah, i think it makes it harder
 81 2018-11-17T08:17:22  <rhavar> Well depends on the amount of hash power the selfish miner has
 82 2018-11-17T08:18:30  <rhavar> But reduces the effectiveness of  the sort of attack where the selfish miner has a block ready to propagate, and already "pre-deployed" it on the network and then blasts it out when he detects a competitor
 83 2018-11-17T08:18:30  <arubi> just woke up, having difficulty thinking about this :)
 84 2018-11-17T08:18:47  <rhavar> And selfish mining can only work for small miners when they use that trick
 85 2018-11-17T08:19:16  <rhavar> (if i understand correctly, which is not a very safe assumption)
 86 2018-11-17T08:20:20  <rhavar> There's a threshold (1/4th or 1/3rd ?) of the hash power, where a selfish miner doesn't need to win block races like that to be profitable though
 87 2018-11-17T08:21:56  <arubi> if their secret block is a lower hash than the one the network discovered, then they have very high incentive to continue mining in secret.  if it's higher then they must at least find another one to (like current rules)
 88 2018-11-17T08:22:48  <arubi> find another one to *extend -  sorry I gotta get coffee :)
 89 2018-11-17T08:22:53  <rhavar> Look at the formula i proposed: " hash(blockA || blockB))   and if the hash is less than 2^255, blockA wins. If it's greater then block B wins "
 90 2018-11-17T08:23:00  <rhavar> That stops you being able to tell
 91 2018-11-17T08:23:14  <rhavar> If you mine a block, you can't tell if it's good or bad ... until you see the "competitor"
 92 2018-11-17T08:23:19  *** Dizzle has quit IRC
 93 2018-11-17T08:24:12  <rhavar> Oh sorry, i misunderstood you
 94 2018-11-17T08:24:18  <rhavar> I should probably get a coffee too
 95 2018-11-17T08:27:07  <rhavar> It's also a little incentive incompatible. It's a bit ridiculous to ask a miner to abandon a block he mined just because someone found it with a "nice hash" at the same amount of work
 96 2018-11-17T08:27:27  *** Murch has joined #bitcoin-dev
 97 2018-11-17T08:28:25  <arubi> mmmh coffee.  yep. it's much better to opportunistically try and mine another one on top of it to bypass that rule
 98 2018-11-17T08:28:47  <rhavar> But at least the "neutral" miners  (who don't have a block in the race) can follow the rule
 99 2018-11-17T08:29:45  <rhavar> In the case of no overt mining / reorg attacks ... i think the rule would be way nicer. But way too many downsides of it to be more than a thought experiment
100 2018-11-17T08:30:06  *** Murch has quit IRC
101 2018-11-17T08:30:36  *** Murch has joined #bitcoin-dev
102 2018-11-17T08:35:13  *** Murch has quit IRC
103 2018-11-17T08:38:20  <rhavar> @arubi: after some thought, i think you're right. It would actually make selfish mining easier
104 2018-11-17T08:39:07  <arubi> ah cool, glad I was making sense
105 2018-11-17T08:41:52  <rhavar> I think you can kinda mitigate it to a fair bit by a rule like the "nice hash contest" is only valid for X seconds (e.g. a legit block race), but at that point you're just putting lipstick on a pig
106 2018-11-17T08:42:30  <arubi> yea anything that requires synchronization is probably not worth it
107 2018-11-17T08:47:05  *** ExtraCrispy has joined #bitcoin-dev
108 2018-11-17T08:47:07  <rhavar> But now that I think about it, is "First seen valid" really incentive compatible? Shouldn't an incentive-driven miner tie-break by picking the block with the smallest coinbase output
109 2018-11-17T08:48:35  <rhavar> (i.e. it's in a miners interest to pick a block which leaves them more transaction-fees to include in their own block)
110 2018-11-17T08:49:59  <arubi> either that or they'd rather pick the one with the block time that will add up to a lower difficulty increase
111 2018-11-17T08:50:42  <arubi> but yea the fees game also sounds right
112 2018-11-17T08:52:00  <rhavar> I have a nagging feeling that if miners completely optimized for (immediate, non-externalized) incentive compatibility -- bitcoin would break pretty fast lol
113 2018-11-17T08:52:54  <rhavar> (and ignored stuff like "making their hardware useless" of course)
114 2018-11-17T08:53:37  <arubi> given what we've seen during the covert asicboost vs. segwit upgrade period, I think that's kinda true
115 2018-11-17T08:55:53  *** barefootmouse has joined #bitcoin-dev
116 2018-11-17T09:13:29  *** Krellan has quit IRC
117 2018-11-17T09:29:13  *** barefootmouse has quit IRC
118 2018-11-17T09:32:28  *** Guyver2 has joined #bitcoin-dev
119 2018-11-17T09:34:11  *** ThomasV has joined #bitcoin-dev
120 2018-11-17T09:34:38  *** lukedashjr has joined #bitcoin-dev
121 2018-11-17T09:35:03  *** luke-jr has quit IRC
122 2018-11-17T09:36:23  <esotericnonsense> phm87: depending on how much effort I put in to my front-end something similar might end up being OSS
123 2018-11-17T09:36:59  <esotericnonsense> phm87: https://gitlab.electronrelocation.com/esotericnonsense/bitcoin-top the 'backend' there is an RPC proxy which has rudimentary whitelisting etc
124 2018-11-17T09:37:23  <esotericnonsense> in this case it's going to be just authentication for wallet access outside of the normal walletpassphrase style stuff
125 2018-11-17T09:37:38  <esotericnonsense> but that's the correct point to do this sort of thing IMO
126 2018-11-17T09:38:06  <esotericnonsense> don't expose RPC, don't even use the commands directly, have an API endpoint that suits your use case and use that / expose that
127 2018-11-17T09:38:44  <esotericnonsense> (a whitelist is better than a blacklist because bitcoind has a whole bunch of RPC functionality, consider it just like root access vs sudo)
128 2018-11-17T09:40:43  *** lukedashjr is now known as luke-jr
129 2018-11-17T09:43:23  *** ThomasV has quit IRC
130 2018-11-17T09:44:07  *** justanotheruser has quit IRC
131 2018-11-17T09:48:43  *** barefootmouse has joined #bitcoin-dev
132 2018-11-17T09:50:24  *** Krellan has joined #bitcoin-dev
133 2018-11-17T09:59:34  *** justanotheruser has joined #bitcoin-dev
134 2018-11-17T10:02:58  *** kexkey has quit IRC
135 2018-11-17T10:06:12  *** Giotis has quit IRC
136 2018-11-17T10:09:06  *** Giotis has joined #bitcoin-dev
137 2018-11-17T10:13:24  *** spinza has quit IRC
138 2018-11-17T10:14:02  *** rh0nj has quit IRC
139 2018-11-17T10:14:37  *** fabianfabian has joined #bitcoin-dev
140 2018-11-17T10:15:08  *** rh0nj has joined #bitcoin-dev
141 2018-11-17T10:22:05  *** spinza has joined #bitcoin-dev
142 2018-11-17T10:27:13  *** hex17or has joined #bitcoin-dev
143 2018-11-17T10:42:54  *** hex17or has quit IRC
144 2018-11-17T10:49:15  *** ThomasV has joined #bitcoin-dev
145 2018-11-17T10:53:27  *** ThomasV has quit IRC
146 2018-11-17T11:04:22  *** aielima has joined #bitcoin-dev
147 2018-11-17T11:09:11  *** ongolaBoy has joined #bitcoin-dev
148 2018-11-17T11:11:24  *** hex17or has joined #bitcoin-dev
149 2018-11-17T11:16:24  *** ongolaBoy has quit IRC
150 2018-11-17T11:18:30  *** ongolaBoy has joined #bitcoin-dev
151 2018-11-17T11:26:29  *** hex17or has quit IRC
152 2018-11-17T11:31:59  *** DTZUZO has joined #bitcoin-dev
153 2018-11-17T11:41:44  *** ongolaBoy has quit IRC
154 2018-11-17T11:43:05  *** ongolaBoy has joined #bitcoin-dev
155 2018-11-17T11:46:11  *** hex17or has joined #bitcoin-dev
156 2018-11-17T12:05:28  *** justanotheruser has quit IRC
157 2018-11-17T12:12:47  *** spinza has quit IRC
158 2018-11-17T12:17:40  *** hex17or has quit IRC
159 2018-11-17T12:21:41  *** ongolaBoy has quit IRC
160 2018-11-17T12:28:05  *** adadelta|txter has joined #bitcoin-dev
161 2018-11-17T12:29:18  *** DTZUZO has quit IRC
162 2018-11-17T12:36:29  *** stoopkid has quit IRC
163 2018-11-17T12:42:31  *** spinza has joined #bitcoin-dev
164 2018-11-17T12:44:13  *** adadelta|txter has quit IRC
165 2018-11-17T12:57:14  *** adadelta|txter has joined #bitcoin-dev
166 2018-11-17T12:58:02  *** ken2812221 has joined #bitcoin-dev
167 2018-11-17T13:15:20  *** Belxjander has quit IRC
168 2018-11-17T13:15:58  *** Belxjander has joined #bitcoin-dev
169 2018-11-17T13:18:42  *** Skirmant has joined #bitcoin-dev
170 2018-11-17T14:16:01  *** rh0nj has quit IRC
171 2018-11-17T14:17:11  *** rh0nj has joined #bitcoin-dev
172 2018-11-17T14:23:46  *** asoltys has quit IRC
173 2018-11-17T14:24:56  *** Defcronyke has quit IRC
174 2018-11-17T14:29:51  *** Defcronyke has joined #bitcoin-dev
175 2018-11-17T14:38:35  *** hex17or has joined #bitcoin-dev
176 2018-11-17T14:39:00  *** iv3c has joined #bitcoin-dev
177 2018-11-17T14:42:56  *** xchuck00 has joined #bitcoin-dev
178 2018-11-17T14:46:03  *** Chris_Stewart_5 has joined #bitcoin-dev
179 2018-11-17T14:51:58  *** xchuck00 has quit IRC
180 2018-11-17T15:15:08  *** hex17or has quit IRC
181 2018-11-17T15:27:51  *** hex17or has joined #bitcoin-dev
182 2018-11-17T15:34:16  *** Belxjander has quit IRC
183 2018-11-17T15:34:43  *** Belxjander has joined #bitcoin-dev
184 2018-11-17T15:58:18  *** Belxjander has quit IRC
185 2018-11-17T15:58:44  *** Belxjander has joined #bitcoin-dev
186 2018-11-17T16:01:52  *** hex17or has quit IRC
187 2018-11-17T16:26:17  *** hex17or has joined #bitcoin-dev
188 2018-11-17T16:30:31  *** hex17or has quit IRC
189 2018-11-17T16:34:02  *** Chris_Stewart_5 has quit IRC
190 2018-11-17T16:38:48  *** phm87 has quit IRC
191 2018-11-17T16:41:49  *** hex17or has joined #bitcoin-dev
192 2018-11-17T16:49:52  *** hex17or has quit IRC
193 2018-11-17T16:51:32  *** stoopkid has joined #bitcoin-dev
194 2018-11-17T17:12:13  *** opdenkamp has joined #bitcoin-dev
195 2018-11-17T17:27:00  *** morcos has quit IRC
196 2018-11-17T17:27:22  *** morcos has joined #bitcoin-dev
197 2018-11-17T17:34:27  *** justanotheruser has joined #bitcoin-dev
198 2018-11-17T17:56:56  *** ExtraCrispy has quit IRC
199 2018-11-17T18:18:01  *** rh0nj has quit IRC
200 2018-11-17T18:19:08  *** rh0nj has joined #bitcoin-dev
201 2018-11-17T18:43:56  *** iv3c has quit IRC
202 2018-11-17T18:58:39  *** JackH has joined #bitcoin-dev
203 2018-11-17T19:05:03  *** hex17or has joined #bitcoin-dev
204 2018-11-17T19:23:33  *** iv3c has joined #bitcoin-dev
205 2018-11-17T19:37:02  *** xchuck00 has joined #bitcoin-dev
206 2018-11-17T19:51:38  *** hex17or has quit IRC
207 2018-11-17T20:12:42  *** iv3c has quit IRC
208 2018-11-17T20:32:28  *** devrando1 has quit IRC
209 2018-11-17T20:39:29  *** devrandom has joined #bitcoin-dev
210 2018-11-17T20:44:41  *** iv3c has joined #bitcoin-dev
211 2018-11-17T20:45:41  *** hex17or has joined #bitcoin-dev
212 2018-11-17T20:46:45  *** hex17or has quit IRC
213 2018-11-17T21:02:56  *** Krellan has quit IRC
214 2018-11-17T21:03:31  *** Krellan has joined #bitcoin-dev
215 2018-11-17T21:04:17  *** Krellan_ has joined #bitcoin-dev
216 2018-11-17T21:08:28  *** Krellan has quit IRC
217 2018-11-17T21:09:11  *** Krellan_ has quit IRC
218 2018-11-17T21:23:53  *** Krellan has joined #bitcoin-dev
219 2018-11-17T21:24:21  *** xchuck00 has quit IRC
220 2018-11-17T21:24:31  *** Krellan has quit IRC
221 2018-11-17T21:27:10  *** Krellan_ has joined #bitcoin-dev
222 2018-11-17T21:28:03  *** Krellan_ has quit IRC
223 2018-11-17T21:34:16  *** Krellan_ has joined #bitcoin-dev
224 2018-11-17T21:36:15  *** bitdex has joined #bitcoin-dev
225 2018-11-17T21:45:17  *** Krellan has joined #bitcoin-dev
226 2018-11-17T21:47:55  *** Krellan_ has quit IRC
227 2018-11-17T21:48:22  *** Krellan_ has joined #bitcoin-dev
228 2018-11-17T21:50:28  *** Krellan has quit IRC
229 2018-11-17T21:53:21  *** Krellan_ has quit IRC
230 2018-11-17T21:58:49  *** Krellan has joined #bitcoin-dev
231 2018-11-17T21:59:26  *** fatalhalt has quit IRC
232 2018-11-17T22:03:44  *** Krellan has quit IRC
233 2018-11-17T22:04:14  *** Krellan has joined #bitcoin-dev
234 2018-11-17T22:04:58  *** Krellan_ has joined #bitcoin-dev
235 2018-11-17T22:05:03  *** fatalhalt has joined #bitcoin-dev
236 2018-11-17T22:09:04  *** Krellan has quit IRC
237 2018-11-17T22:10:06  *** Krellan_ has quit IRC
238 2018-11-17T22:14:31  *** Krellan has joined #bitcoin-dev
239 2018-11-17T22:15:13  *** Krellan has quit IRC
240 2018-11-17T22:15:34  *** Krellan has joined #bitcoin-dev
241 2018-11-17T22:17:08  *** Belxjander has quit IRC
242 2018-11-17T22:18:10  *** Belxjander has joined #bitcoin-dev
243 2018-11-17T22:18:31  *** Krellan_ has joined #bitcoin-dev
244 2018-11-17T22:20:01  *** rh0nj has quit IRC
245 2018-11-17T22:20:28  *** Krellan has quit IRC
246 2018-11-17T22:23:08  *** rh0nj has joined #bitcoin-dev
247 2018-11-17T22:23:19  *** Krellan_ has quit IRC
248 2018-11-17T22:25:55  *** Krellan_ has joined #bitcoin-dev
249 2018-11-17T22:27:46  *** spinza has quit IRC
250 2018-11-17T22:30:08  *** Krellan has joined #bitcoin-dev
251 2018-11-17T22:34:48  *** Krellan has quit IRC
252 2018-11-17T22:35:19  *** Krellan has joined #bitcoin-dev
253 2018-11-17T22:36:01  *** Krellan_ has joined #bitcoin-dev
254 2018-11-17T22:36:23  *** spinza has joined #bitcoin-dev
255 2018-11-17T22:40:16  *** Krellan has quit IRC
256 2018-11-17T22:40:46  *** Krellan_ has quit IRC
257 2018-11-17T22:45:32  *** Krellan has joined #bitcoin-dev
258 2018-11-17T22:46:10  *** hex17or has joined #bitcoin-dev
259 2018-11-17T22:46:10  *** Krellan has quit IRC
260 2018-11-17T22:46:29  *** Krellan has joined #bitcoin-dev
261 2018-11-17T22:47:34  *** Krellan_ has joined #bitcoin-dev
262 2018-11-17T22:50:33  *** Chris_Stewart_5 has joined #bitcoin-dev
263 2018-11-17T22:51:40  *** Krellan has quit IRC
264 2018-11-17T22:52:26  *** Krellan_ has quit IRC
265 2018-11-17T23:00:01  *** Krellan has joined #bitcoin-dev
266 2018-11-17T23:00:53  *** Krellan has quit IRC
267 2018-11-17T23:00:55  *** Krellan_ has joined #bitcoin-dev
268 2018-11-17T23:02:07  *** Krellan has joined #bitcoin-dev
269 2018-11-17T23:05:51  *** Krellan_ has quit IRC
270 2018-11-17T23:06:15  *** Krellan_ has joined #bitcoin-dev
271 2018-11-17T23:06:42  *** Krellan has quit IRC
272 2018-11-17T23:06:53  *** tombusby has quit IRC
273 2018-11-17T23:07:50  *** tombusby has joined #bitcoin-dev
274 2018-11-17T23:10:41  *** Krellan_ has quit IRC
275 2018-11-17T23:13:42  *** bitdex has quit IRC
276 2018-11-17T23:15:34  *** Krellan has joined #bitcoin-dev
277 2018-11-17T23:16:26  *** Krellan has quit IRC
278 2018-11-17T23:16:30  *** Krellan_ has joined #bitcoin-dev
279 2018-11-17T23:17:34  *** Krellan has joined #bitcoin-dev
280 2018-11-17T23:21:40  *** Krellan_ has quit IRC
281 2018-11-17T23:21:57  *** Krellan has quit IRC
282 2018-11-17T23:23:54  *** realz has joined #bitcoin-dev
283 2018-11-17T23:29:02  *** Krellan has joined #bitcoin-dev
284 2018-11-17T23:31:06  *** Krellan_ has joined #bitcoin-dev
285 2018-11-17T23:33:00  *** Krellan_ has quit IRC
286 2018-11-17T23:33:39  *** Krellan has quit IRC
287 2018-11-17T23:34:10  *** Krellan has joined #bitcoin-dev
288 2018-11-17T23:37:29  *** Krellan_ has joined #bitcoin-dev
289 2018-11-17T23:38:27  *** Guyver2 has quit IRC
290 2018-11-17T23:38:36  *** Krellan has quit IRC
291 2018-11-17T23:39:26  *** Krellan has joined #bitcoin-dev
292 2018-11-17T23:41:13  *** Krellan has quit IRC
293 2018-11-17T23:41:30  *** Belxjander has quit IRC
294 2018-11-17T23:41:42  *** Krellan_ has quit IRC
295 2018-11-17T23:41:55  *** Belxjander has joined #bitcoin-dev
296 2018-11-17T23:42:41  *** Krellan has joined #bitcoin-dev
297 2018-11-17T23:44:36  *** Krellan_ has joined #bitcoin-dev
298 2018-11-17T23:47:07  *** Krellan has quit IRC
299 2018-11-17T23:49:03  *** Krellan_ has quit IRC
300 2018-11-17T23:55:53  *** Krellan has joined #bitcoin-dev