12021-02-13T00:02:15  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has joined #bitcoin-core-dev
  22021-02-13T00:08:48  <aj> sipa: why wouldn't you solve per-per dandelion DoS by just round-robining between peers proposing dandelion txs? (and limiting the per-peer incoming dandelion queue)
  32021-02-13T00:08:50  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has quit IRC (Read error: Connection reset by peer)
  42021-02-13T00:09:04  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has joined #bitcoin-core-dev
  52021-02-13T00:12:30  <sipa> aj: elaborate?
  62021-02-13T00:13:42  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has quit IRC (Ping timeout: 256 seconds)
  72021-02-13T00:22:02  <aj> sipa: incoming dandelion tx goes into a per-peer queue, that's capped by size. pick a rate limit for outgoing dandelion txs, use poisson delays to do outgoing dandelion txs at most at that rate limit. when sending an outgoing dandelion tx, pick your own tx if you have one to send, otherwise send peer X's earliest dandelion tx and increment X so you use the next peer next time.
  82021-02-13T00:23:14  <aj> (or use peer Y's oldest dandelion tx where Y has a dandelion tx and no peer Z, X <= Z < Y, has a dandelion tx)
  92021-02-13T00:23:34  <sipa> and if the queue overflows, just convert into a real tx?
 102021-02-13T00:24:39  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has joined #bitcoin-core-dev
 112021-02-13T00:24:41  <aj> if the queue overflows, fluff the oldest entry in the queue? maybe?
 122021-02-13T00:26:51  *** AaronvanW <AaronvanW!~AaronvanW@unaffiliated/aaronvanw> has quit IRC ()
 132021-02-13T00:27:14  <sipa> aj: interesting, i think that could work
 142021-02-13T00:27:56  <aj> \o/
 152021-02-13T00:28:17  <glozow> dumb question, can u rate limit by sigops?
 162021-02-13T00:28:37  <sipa> glozow: sigops are (for the purposes of fee estimation/standardness) converted to vsize
 172021-02-13T00:29:02  <sipa> a transaction's effective vsize is max(real vsize, 20*sigops)
 182021-02-13T00:29:28  <glozow> ohhh right 🧠
 192021-02-13T00:30:33  <sdaftuar> sipa: aj: just getting caught up here. its been a while since i've thought about this but i think anything that uses a rate limit can be trivially attacked, to force worst case behavior--
 202021-02-13T00:31:20  <sipa> sdaftuar: yeah, that's also what i remember from thinking about it earlier
 212021-02-13T00:31:23  <sdaftuar> and it seems to be that worst case behavior is just one-hop dandelion. one-hop dandelion is probably still pretty good (would be nicce to see a writeup on that), but if that's all we can guarantee, it might be a lot easier to just implement one-hope dandelion and all it a day
 222021-02-13T00:32:14  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has quit IRC (Remote host closed the connection)
 232021-02-13T00:32:31  <sipa> but in this design, if you have a few peers that constantly send you stem txn at max rate, they'll just cause their own queue to overflow, and not affect relay of other peer's stems i think?
 242021-02-13T00:32:44  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has joined #bitcoin-core-dev
 252021-02-13T00:32:48  <glozow> what’s one-hop dandelion? like only 1 stem?
 262021-02-13T00:33:15  <sipa> glozow: "when you have a new tx, only send it to one peer, and don't add it to your own mempool (except after a delay)"
 272021-02-13T00:33:42  <glozow> mm, thanks sipa
 282021-02-13T00:33:53  <sdaftuar> with dandelion you take all your inbound transactions and funnel them to 1 or 2 outbounds, so i think you could cause your outbound peers to fluff all your ransactions even if none of your inbounds are exceeding the rate limit
 292021-02-13T00:34:26  <sipa> need to think more about this
 302021-02-13T00:34:33  <aj> i think if average dandelion stem length is 10, and there's 10k publicly reachable nodes, then the average node only stems 1/1000th of the number of tx's it sees flooded, so if you set the dandelion rate limit to 10% of your tx rate limit, and only have 100 tx-relay peers, no honest peer will hit the rate limit?
 312021-02-13T00:35:40  <aj> (i think the bip's proposed 10% odds of fluffing gives an average path length of ~10)
 322021-02-13T00:36:56  <sdaftuar> sipa: aj: did i ever share a writeup of the issues i found with dandelion with you guys? i know i analyzed this at some length a couple years ago, but i need to find my notes
 332021-02-13T00:36:59  <aj> sdaftuar: "one-hope dandelion" is a great typo :)
 342021-02-13T00:37:03  <sdaftuar> lol
 352021-02-13T00:37:12  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has quit IRC (Remote host closed the connection)
 362021-02-13T00:37:12  <sipa> sdaftuar: i only know of your bitcoin SE answer
 372021-02-13T00:37:30  <aj> sdaftuar: pretty sure i wasn't paying attention in depth at that time
 382021-02-13T00:37:47  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has joined #bitcoin-core-dev
 392021-02-13T00:38:05  <sdaftuar> i remember writing up something more detailed explaining why i thought we needed to double the mempool (ie, allocate stempool memory equal to the mempool) to immplement dandelion without introducing DoS vectors
 402021-02-13T00:38:11  <sdaftuar> but i need to find that again
 412021-02-13T00:38:45  <aj> sdaftuar: i think one-hop dandelion would already solve all the protocol work; so upgrading to n-hop dandelion would be a per-node "relay-policy" update after that too
 422021-02-13T00:39:25  <sipa> one-hope dandelion could even be done without any protocol changes (if we expect the peer to always convert a stempool tx to a real one, just send it as a normal one)
 432021-02-13T00:39:44  <aj> aww
 442021-02-13T00:40:19  <sdaftuar> one of things i remember discussing with morcos was that we could implement a modified version of dandelion where we fall back to fluffing everything if any kind of DoS scenario seemed to be happening... his suggestion (if i remember right) is that such an outcome would strictly be better than what we do today
 452021-02-13T00:40:52  <sipa> i remember that too, and i remember not being convinced it's worth the implemention complexity in that case
 462021-02-13T00:40:55  <sdaftuar> my concern was that i didn't like the idea of advertising that we implement Dandelion (as described in the paper) but in practice we get behavior worse than that whenever adversarial conditions strike, which is something that is likely unobservable
 472021-02-13T00:41:09  <sdaftuar> but if we just implemented one-hop dandelion, i think that's pretty trivial -- it's basically just a wallet behavior
 482021-02-13T00:41:34  <aj> it's changing RelayTransactions to have a flag to only pick a couple of outbound nodes, instead of everyone?
 492021-02-13T00:41:36  <sdaftuar> the only downside to that is there's no writeup of how that improves privacy
 502021-02-13T00:41:39  <sdaftuar> but it probably does
 512021-02-13T00:42:11  <sdaftuar> aj: yeah something like that, and not accepting the transaction to our own mempool
 522021-02-13T00:42:18  <sipa> sdaftuar: i remember talking to giulia fanti at FC about this; she mentioned a paper on one-hop dandelion (or some other simplified version), but never saw anything of it
 532021-02-13T00:42:18  <sdaftuar> on some timer
 542021-02-13T00:42:34  <sdaftuar> sipa: yes i recall discussing the same with her. i was hoping we'd get an analysis :)
 552021-02-13T00:43:47  <sdaftuar> ok here's a gist i wrote up in 2018 on this, no idea if this will make sense because i haven't re-read it: https://gist.github.com/sdaftuar/152812f1e862559e2afdcc8135498e2c
 562021-02-13T00:50:48  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has quit IRC (Ping timeout: 272 seconds)
 572021-02-13T00:51:32  <aj> there's no actual value to spamming dandelion, it's just a DoS, right? (spamming the mempool by comparison lets you use it as distributed storage or a broadcast medium)
 582021-02-13T00:51:52  <sdaftuar> yeah free relay (use network bandwidth for free)
 592021-02-13T00:54:00  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has joined #bitcoin-core-dev
 602021-02-13T00:54:43  <sipa> and possibly it may reduce the privacy of those legitimately trying to use dandelion
 612021-02-13T00:54:56  <sipa> not sure if you would call that "value"
 622021-02-13T00:55:07  <sdaftuar> sipa: right, depending on what we do in response
 632021-02-13T00:55:09  <aj> but stemming doesn't let you choose who it gets relayed to?
 642021-02-13T00:56:41  <sdaftuar> it's hard to discuss without a specific proposal but i think if there's a scenario where (say) exceeding a rate limit causes everything to be fluffed, we probably should assume that an attacker will find a way to exceed the rate limit whenever they care to deanonymize other transactions
 652021-02-13T00:56:57  <aj> i guess if you control 2% of the network, you've got 20% chance of your msg hitting a node you control, and that's only 220 nodes
 662021-02-13T00:58:08  <sdaftuar> i think morcos' point to me was that we still get *some* benefit in that scenario, but i figure we might as well just code up and promise what we can actually deliver -- if it's just one-hop dandelion, that's pretty simple too
 672021-02-13T01:00:13  <sipa> (very much brainstorming) if the issues with dandelion are purely due to its funneling effect... would it make sense of an alternative that doesn't have that (e.g. define a random routing network between all your peer, but keep it bijective)
 682021-02-13T01:00:48  <aj> funneling effect?
 692021-02-13T01:01:44  <sdaftuar> aj: at any given moment, a small fraction of nodes will fluff most of the transactions
 702021-02-13T01:02:01  <sipa> funneling = the fact that it maps many input peers to few output peers
 712021-02-13T01:03:08  <sipa> which is what i think interferes with setting rate limits, because whatever rate limit you are willing to accept on your inputs will be lower than what you may be producing as output
 722021-02-13T01:03:22  <sipa> even under honest conditions
 732021-02-13T01:08:39  <aj> is that true after the first hop? the only nodes receiving stems are reachable nodes, but for a reachable node, the number of incoming connections from reachable nodes on average should be less than the number of outgoing connections?
 742021-02-13T01:10:40  <aj> mmm
 752021-02-13T01:11:11  <aj> seems like the best idea is to resurrect the sims, see how one hop dandelion performs, and then re-sim more complicated things?
 762021-02-13T01:11:15  <sdaftuar> aj: the reason dandelion achieves privacy is because we assume that fluffing is the observable behavior (and the stem phase is mostly unobservable), and so the only way we can get privacy is by having a small fraction of nodes fluff more than their fair share of transactions (otherwise, an attacker could try to learn the mapping of origin node to fluff node, roughly)
 772021-02-13T01:12:32  <aj> aha, "dandelion-lite" was the one-hop variant, and https://github.com/gfanti/dandelion-simulations/commit/598cf93eb77e65c635be932010f9b762311da95f looks like the sim code for it
 782021-02-13T01:13:28  <aj> sdaftuar: hmm, i thought the argument (at least for n-hop dandelion) was that the mapping between source node and fluff node was unpredictable and changed regularly
 792021-02-13T01:14:32  <sdaftuar> i think if there was just a bijection of input node to output node, that an attacker could just learn the network by connecting to all the listenign nodes and relaying one transaction and seeing where it came out?
 802021-02-13T01:14:51  <sdaftuar> you'd have to repeat it as peers cycled, but seems like not too hard to learn
 812021-02-13T01:15:11  *** rc_423_ <rc_423_!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has joined #bitcoin-core-dev
 822021-02-13T01:15:27  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has quit IRC (Ping timeout: 246 seconds)
 832021-02-13T01:16:26  <sdaftuar> i think multiple input to one output is how you make observed transactions indistinguishable (as far as source goes)
 842021-02-13T01:17:55  *** rc_423_ <rc_423_!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has quit IRC (Read error: Connection reset by peer)
 852021-02-13T01:18:11  *** rc_423_ <rc_423_!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has joined #bitcoin-core-dev
 862021-02-13T01:54:01  *** justanotheruser <justanotheruser!~justanoth@unaffiliated/justanotheruser> has quit IRC (Ping timeout: 272 seconds)
 872021-02-13T01:58:51  *** belcher_ <belcher_!~belcher@unaffiliated/belcher> has joined #bitcoin-core-dev
 882021-02-13T02:02:22  *** belcher <belcher!~belcher@unaffiliated/belcher> has quit IRC (Ping timeout: 272 seconds)
 892021-02-13T02:09:18  *** sdaftuar <sdaftuar!~sdaftuar@gateway/tor-sasl/sdaftuar> has quit IRC (Ping timeout: 268 seconds)
 902021-02-13T02:11:05  *** sdaftuar <sdaftuar!~sdaftuar@gateway/tor-sasl/sdaftuar> has joined #bitcoin-core-dev
 912021-02-13T02:26:30  *** promag <promag!~promag@188.250.84.129> has joined #bitcoin-core-dev
 922021-02-13T02:30:00  *** Evel-Knievel <Evel-Knievel!~Evel-Knie@d5152f744.static.telenet.be> has quit IRC (Ping timeout: 246 seconds)
 932021-02-13T02:32:26  *** subatuba21 <subatuba21!18049855@c-24-4-152-85.hsd1.ca.comcast.net> has joined #bitcoin-core-dev
 942021-02-13T02:44:27  *** subatuba21 <subatuba21!18049855@c-24-4-152-85.hsd1.ca.comcast.net> has quit IRC (Quit: Connection closed)
 952021-02-13T03:36:30  *** jonatack_ <jonatack_!~jon@37.166.60.165> has quit IRC (Ping timeout: 246 seconds)
 962021-02-13T04:11:27  *** dood <dood!63a15fe8@99-161-95-232.lightspeed.tukrga.sbcglobal.net> has joined #bitcoin-core-dev
 972021-02-13T04:17:59  *** dood <dood!63a15fe8@99-161-95-232.lightspeed.tukrga.sbcglobal.net> has quit IRC (Quit: Connection closed)
 982021-02-13T04:36:11  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has joined #bitcoin-core-dev
 992021-02-13T05:28:48  *** tralfaz <tralfaz!uid458765@gateway/web/irccloud.com/x-xtskxctxchzulvoa> has joined #bitcoin-core-dev
1002021-02-13T05:43:45  *** ossifrage <ossifrage!~ossifrage@unaffiliated/ossifrage> has quit IRC (Ping timeout: 240 seconds)
1012021-02-13T05:45:55  *** ossifrage <ossifrage!~ossifrage@unaffiliated/ossifrage> has joined #bitcoin-core-dev
1022021-02-13T06:47:24  *** mekster <mekster!~mekster@139.180.192.79> has quit IRC (Quit: mekster)
1032021-02-13T06:47:38  *** mekster <mekster!~mekster@139.180.192.79> has joined #bitcoin-core-dev
1042021-02-13T07:56:04  *** tralfaz <tralfaz!uid458765@gateway/web/irccloud.com/x-xtskxctxchzulvoa> has quit IRC (Quit: Connection closed for inactivity)
1052021-02-13T08:11:24  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
1062021-02-13T08:11:25  <bitcoin-git> [bitcoin] practicalswift opened pull request #21169: fuzz: Add RPC interface fuzzing. Increase fuzzing coverage from 65% to 70%. (master...fuzzing-rpc) https://github.com/bitcoin/bitcoin/pull/21169
1072021-02-13T08:11:26  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
1082021-02-13T08:15:14  *** DeanGuss <DeanGuss!~dean@gateway/tor-sasl/deanguss> has quit IRC (Remote host closed the connection)
1092021-02-13T08:15:26  *** DeanGuss <DeanGuss!~dean@gateway/tor-sasl/deanguss> has joined #bitcoin-core-dev
1102021-02-13T08:20:54  *** nullptr| <nullptr|!~nullptr|@ip-94-112-13-119.net.upcbroadband.cz> has quit IRC (Quit: ZNC - http://znc.in)
1112021-02-13T08:21:16  *** nullptr| <nullptr|!~nullptr|@ip-94-112-13-119.net.upcbroadband.cz> has joined #bitcoin-core-dev
1122021-02-13T08:27:20  *** root <root!~echo@139.180.133.130> has joined #bitcoin-core-dev
1132021-02-13T08:27:45  *** root is now known as Guest16537
1142021-02-13T08:31:08  *** exhoplex <exhoplex!~echo@139.180.133.130> has quit IRC (Ping timeout: 258 seconds)
1152021-02-13T08:34:56  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has quit IRC (Read error: Connection reset by peer)
1162021-02-13T08:38:03  *** harrigan <harrigan!~harrigan@ptr-93-89-242-235.ip.airwire.ie> has joined #bitcoin-core-dev
1172021-02-13T08:47:00  *** suzziminer[m] <suzziminer[m]!suzziminer@gateway/shell/matrix.org/x-tqulrzmjsooaovnm> has quit IRC (*.net *.split)
1182021-02-13T08:49:40  *** nckx <nckx!~nckx@tobias.gr> has quit IRC (*.net *.split)
1192021-02-13T08:49:40  *** nullptr| <nullptr|!~nullptr|@ip-94-112-13-119.net.upcbroadband.cz> has quit IRC (*.net *.split)
1202021-02-13T08:49:40  *** rh0nj <rh0nj!~rh0nj@88.99.167.175> has quit IRC (*.net *.split)
1212021-02-13T08:49:40  *** IGHOR <IGHOR!~quassel@176.121.4.135> has quit IRC (*.net *.split)
1222021-02-13T08:49:40  *** TallTim <TallTim!~TallTim@184-83-248-206-dynamic.midco.net> has quit IRC (*.net *.split)
1232021-02-13T08:49:40  *** Zenton <Zenton!~user@unaffiliated/vicenteh> has quit IRC (*.net *.split)
1242021-02-13T08:49:40  *** spinza <spinza!~spin@102.132.245.16> has quit IRC (*.net *.split)
1252021-02-13T08:49:40  *** gwillen <gwillen!~gwillen@unaffiliated/gwillen> has quit IRC (*.net *.split)
1262021-02-13T08:49:41  *** willcl_ark <willcl_ark!~quassel@cpc123780-trow7-2-0-cust177.18-1.cable.virginm.net> has quit IRC (*.net *.split)
1272021-02-13T08:49:41  *** btc_thc <btc_thc!annalee@kosher.marriageiguana.com> has quit IRC (*.net *.split)
1282021-02-13T08:49:41  *** baldur <baldur!~baldur@pool-108-30-51-126.nycmny.fios.verizon.net> has quit IRC (*.net *.split)
1292021-02-13T08:49:41  *** TheRec_ <TheRec_!~toto@drupal.org/user/146860/view> has quit IRC (*.net *.split)
1302021-02-13T08:49:41  *** yunier2002 <yunier2002!~yunier200@c-73-85-126-91.hsd1.fl.comcast.net> has quit IRC (*.net *.split)
1312021-02-13T08:49:41  *** jrayhawk <jrayhawk!~jrayhawk@unaffiliated/jrayhawk> has quit IRC (*.net *.split)
1322021-02-13T08:49:41  *** berndj <berndj!~berndj@ns1.linksynergy.co.za> has quit IRC (*.net *.split)
1332021-02-13T08:49:41  *** esotericnonsense <esotericnonsense!~esotericn@unaffiliated/esotericnonsense> has quit IRC (*.net *.split)
1342021-02-13T08:49:41  *** niftynei <niftynei!~niftynei@104.131.77.55> has quit IRC (*.net *.split)
1352021-02-13T08:49:41  *** warren <warren!~warren@fedora/wombat/warren> has quit IRC (*.net *.split)
1362021-02-13T08:49:41  *** Landryl <Landryl!~Landryl@ns528256.ip-192-99-10.net> has quit IRC (*.net *.split)
1372021-02-13T08:49:41  *** dhruvm <dhruvm!~dhruv@165.227.49.220> has quit IRC (*.net *.split)
1382021-02-13T08:49:41  *** isis <isis!~isis@abulafia.patternsinthevoid.net> has quit IRC (*.net *.split)
1392021-02-13T08:49:42  *** meshcollider <meshcollider!meshcollid@gateway/shell/ircnow/x-euyphuspntddllnf> has quit IRC (*.net *.split)
1402021-02-13T08:49:42  *** thrasher` <thrasher`!~thrasher@173.209.42.7> has quit IRC (*.net *.split)
1412021-02-13T08:49:42  *** MarcoFalke <MarcoFalke!~none@198.12.116.246> has quit IRC (*.net *.split)
1422021-02-13T08:49:42  *** treyzania <treyzania!~treyzania@paphos.tr3y.io> has quit IRC (*.net *.split)
1432021-02-13T08:49:42  *** sr_gi <sr_gi!~sr_gi@static-125-62-230-77.ipcom.comunitel.net> has quit IRC (*.net *.split)
1442021-02-13T08:49:42  *** gleb <gleb!~gleb@178.150.137.228> has quit IRC (*.net *.split)
1452021-02-13T08:49:42  *** nkuttler <nkuttler!~nkuttler@unaffiliated/nkuttler> has quit IRC (*.net *.split)
1462021-02-13T08:49:42  *** hebasto <hebasto!sid449604@gateway/web/irccloud.com/x-diwgzwdyfnohchvk> has quit IRC (*.net *.split)
1472021-02-13T08:49:42  *** sturles <sturles!~sturles@unaffiliated/sturles> has quit IRC (*.net *.split)
1482021-02-13T08:49:42  *** queip <queip!~queip@unaffiliated/rezurus> has quit IRC (*.net *.split)
1492021-02-13T08:49:42  *** tylerchambers <tylerchambers!sid477594@gateway/web/irccloud.com/x-azrvixincmqtcbuq> has quit IRC (*.net *.split)
1502021-02-13T08:49:42  *** jakesyl <jakesyl!sid56879@gateway/web/irccloud.com/x-iztdehhgiceanbhh> has quit IRC (*.net *.split)
1512021-02-13T08:49:43  *** da2ce7 <da2ce7!~da2ce7@opentransactions/dev/da2ce7> has quit IRC (*.net *.split)
1522021-02-13T08:49:43  *** valwal_ <valwal_!sid334773@gateway/web/irccloud.com/x-hzzvfdtdjawztrby> has quit IRC (*.net *.split)
1532021-02-13T08:49:43  *** dburkett <dburkett!sid411344@gateway/web/irccloud.com/x-fsktttelmhthtmah> has quit IRC (*.net *.split)
1542021-02-13T08:49:43  *** dergoegge <dergoegge!sid453889@gateway/web/irccloud.com/x-vpggjtvyxjofpnen> has quit IRC (*.net *.split)
1552021-02-13T08:49:43  *** Galvas <Galvas!sid459296@gateway/web/irccloud.com/x-oxwszmwkhmipkqtn> has quit IRC (*.net *.split)
1562021-02-13T08:49:43  *** schmidty <schmidty!sid297174@gateway/web/irccloud.com/x-xvvlfkntomjeacbw> has quit IRC (*.net *.split)
1572021-02-13T08:49:43  *** SurajUpadhyay <SurajUpadhyay!uid421192@gateway/web/irccloud.com/x-uefgzwkzruiwmhar> has quit IRC (*.net *.split)
1582021-02-13T08:49:43  *** pierre_rochard <pierre_rochard!sid299882@gateway/web/irccloud.com/x-fqtcojnbmezqqmsv> has quit IRC (*.net *.split)
1592021-02-13T08:49:43  *** Henry151 <Henry151!~bishop@ns3007530.ip-151-80-44.eu> has quit IRC (*.net *.split)
1602021-02-13T08:49:43  *** nsh <nsh!~lol@wikipedia/nsh> has quit IRC (*.net *.split)
1612021-02-13T08:49:43  *** TD-Linux <TD-Linux!~Thomas@about/essy/indecisive/TD-Linux> has quit IRC (*.net *.split)
1622021-02-13T08:49:43  *** nehan <nehan!~nehan@41.213.196.104.bc.googleusercontent.com> has quit IRC (*.net *.split)
1632021-02-13T08:49:44  *** a5m0 <a5m0!~a5m0@unaffiliated/a5m0> has quit IRC (*.net *.split)
1642021-02-13T08:49:44  *** troygior1hev <troygior1hev!~troygiors@d67-193-140-136.home3.cgocable.net> has quit IRC (*.net *.split)
1652021-02-13T08:49:44  *** adam3us <adam3us!~adam3us@unaffiliated/adam3us> has quit IRC (*.net *.split)
1662021-02-13T08:49:44  *** romanz_ <romanz_!~romanz@93.123.196.104.bc.googleusercontent.com> has quit IRC (*.net *.split)
1672021-02-13T08:49:48  *** suzziminer[m] <suzziminer[m]!suzziminer@gateway/shell/matrix.org/x-tqulrzmjsooaovnm> has joined #bitcoin-core-dev
1682021-02-13T08:50:21  *** Dev0n <Dev0n!~Dev0n@unaffiliated/dev0n> has quit IRC (Ping timeout: 264 seconds)
1692021-02-13T08:52:08  *** Dev0n <Dev0n!~Dev0n@unaffiliated/dev0n> has joined #bitcoin-core-dev
1702021-02-13T08:52:27  *** sr_gi <sr_gi!~sr_gi@static-125-62-230-77.ipcom.comunitel.net> has joined #bitcoin-core-dev
1712021-02-13T08:52:27  *** gleb <gleb!~gleb@178.150.137.228> has joined #bitcoin-core-dev
1722021-02-13T08:52:27  *** nkuttler <nkuttler!~nkuttler@unaffiliated/nkuttler> has joined #bitcoin-core-dev
1732021-02-13T08:52:27  *** hebasto <hebasto!sid449604@gateway/web/irccloud.com/x-diwgzwdyfnohchvk> has joined #bitcoin-core-dev
1742021-02-13T08:52:27  *** sturles <sturles!~sturles@unaffiliated/sturles> has joined #bitcoin-core-dev
1752021-02-13T08:52:27  *** queip <queip!~queip@unaffiliated/rezurus> has joined #bitcoin-core-dev
1762021-02-13T08:52:27  *** jakesyl <jakesyl!sid56879@gateway/web/irccloud.com/x-iztdehhgiceanbhh> has joined #bitcoin-core-dev
1772021-02-13T08:52:27  *** tylerchambers <tylerchambers!sid477594@gateway/web/irccloud.com/x-azrvixincmqtcbuq> has joined #bitcoin-core-dev
1782021-02-13T08:52:27  *** da2ce7 <da2ce7!~da2ce7@opentransactions/dev/da2ce7> has joined #bitcoin-core-dev
1792021-02-13T08:52:27  *** valwal_ <valwal_!sid334773@gateway/web/irccloud.com/x-hzzvfdtdjawztrby> has joined #bitcoin-core-dev
1802021-02-13T08:52:27  *** dburkett <dburkett!sid411344@gateway/web/irccloud.com/x-fsktttelmhthtmah> has joined #bitcoin-core-dev
1812021-02-13T08:52:27  *** dergoegge <dergoegge!sid453889@gateway/web/irccloud.com/x-vpggjtvyxjofpnen> has joined #bitcoin-core-dev
1822021-02-13T08:52:27  *** Galvas <Galvas!sid459296@gateway/web/irccloud.com/x-oxwszmwkhmipkqtn> has joined #bitcoin-core-dev
1832021-02-13T08:52:27  *** schmidty <schmidty!sid297174@gateway/web/irccloud.com/x-xvvlfkntomjeacbw> has joined #bitcoin-core-dev
1842021-02-13T08:52:27  *** pierre_rochard <pierre_rochard!sid299882@gateway/web/irccloud.com/x-fqtcojnbmezqqmsv> has joined #bitcoin-core-dev
1852021-02-13T08:52:27  *** SurajUpadhyay <SurajUpadhyay!uid421192@gateway/web/irccloud.com/x-uefgzwkzruiwmhar> has joined #bitcoin-core-dev
1862021-02-13T08:52:27  *** Henry151 <Henry151!~bishop@ns3007530.ip-151-80-44.eu> has joined #bitcoin-core-dev
1872021-02-13T08:52:27  *** nsh <nsh!~lol@wikipedia/nsh> has joined #bitcoin-core-dev
1882021-02-13T08:52:27  *** TD-Linux <TD-Linux!~Thomas@about/essy/indecisive/TD-Linux> has joined #bitcoin-core-dev
1892021-02-13T08:52:27  *** nehan <nehan!~nehan@41.213.196.104.bc.googleusercontent.com> has joined #bitcoin-core-dev
1902021-02-13T08:52:28  *** Thomas[m]1 <Thomas[m]1!thomaseizi@gateway/shell/matrix.org/x-kkhcnqhctimgvvhq> has quit IRC (Ping timeout: 244 seconds)
1912021-02-13T08:52:41  *** nullptr| <nullptr|!~nullptr|@ip-94-112-13-119.net.upcbroadband.cz> has joined #bitcoin-core-dev
1922021-02-13T08:52:41  *** rh0nj <rh0nj!~rh0nj@88.99.167.175> has joined #bitcoin-core-dev
1932021-02-13T08:52:41  *** IGHOR <IGHOR!~quassel@176.121.4.135> has joined #bitcoin-core-dev
1942021-02-13T08:52:41  *** TallTim <TallTim!~TallTim@184-83-248-206-dynamic.midco.net> has joined #bitcoin-core-dev
1952021-02-13T08:52:41  *** Zenton <Zenton!~user@unaffiliated/vicenteh> has joined #bitcoin-core-dev
1962021-02-13T08:52:41  *** spinza <spinza!~spin@102.132.245.16> has joined #bitcoin-core-dev
1972021-02-13T08:52:41  *** gwillen <gwillen!~gwillen@unaffiliated/gwillen> has joined #bitcoin-core-dev
1982021-02-13T08:52:41  *** willcl_ark <willcl_ark!~quassel@cpc123780-trow7-2-0-cust177.18-1.cable.virginm.net> has joined #bitcoin-core-dev
1992021-02-13T08:52:41  *** btc_thc <btc_thc!annalee@kosher.marriageiguana.com> has joined #bitcoin-core-dev
2002021-02-13T08:52:41  *** baldur <baldur!~baldur@pool-108-30-51-126.nycmny.fios.verizon.net> has joined #bitcoin-core-dev
2012021-02-13T08:52:41  *** TheRec_ <TheRec_!~toto@drupal.org/user/146860/view> has joined #bitcoin-core-dev
2022021-02-13T08:52:41  *** yunier2002 <yunier2002!~yunier200@c-73-85-126-91.hsd1.fl.comcast.net> has joined #bitcoin-core-dev
2032021-02-13T08:52:41  *** jrayhawk <jrayhawk!~jrayhawk@unaffiliated/jrayhawk> has joined #bitcoin-core-dev
2042021-02-13T08:52:41  *** berndj <berndj!~berndj@ns1.linksynergy.co.za> has joined #bitcoin-core-dev
2052021-02-13T08:52:41  *** esotericnonsense <esotericnonsense!~esotericn@unaffiliated/esotericnonsense> has joined #bitcoin-core-dev
2062021-02-13T08:52:41  *** niftynei <niftynei!~niftynei@104.131.77.55> has joined #bitcoin-core-dev
2072021-02-13T08:52:41  *** warren <warren!~warren@fedora/wombat/warren> has joined #bitcoin-core-dev
2082021-02-13T08:52:41  *** Landryl <Landryl!~Landryl@ns528256.ip-192-99-10.net> has joined #bitcoin-core-dev
2092021-02-13T08:52:41  *** dhruvm <dhruvm!~dhruv@165.227.49.220> has joined #bitcoin-core-dev
2102021-02-13T08:52:41  *** isis <isis!~isis@abulafia.patternsinthevoid.net> has joined #bitcoin-core-dev
2112021-02-13T08:52:58  *** robert_spigler <robert_spigler!robertspig@gateway/shell/matrix.org/x-rnsccjsdeotbttyd> has quit IRC (Ping timeout: 244 seconds)
2122021-02-13T08:52:58  *** vadorovsky <vadorovsky!vadorovsky@gateway/shell/matrix.org/x-jwcdoyziqzjwrksl> has quit IRC (Ping timeout: 244 seconds)
2132021-02-13T08:53:08  *** suzziminer[m] <suzziminer[m]!suzziminer@gateway/shell/matrix.org/x-tqulrzmjsooaovnm> has quit IRC (Ping timeout: 258 seconds)
2142021-02-13T08:53:18  *** nkuttler <nkuttler!~nkuttler@unaffiliated/nkuttler> has quit IRC (Max SendQ exceeded)
2152021-02-13T08:53:18  *** queip <queip!~queip@unaffiliated/rezurus> has quit IRC (Max SendQ exceeded)
2162021-02-13T08:53:21  *** jamesob <jamesob!sid180710@gateway/web/irccloud.com/x-zrkgoizuznjfbmdh> has quit IRC (Ping timeout: 264 seconds)
2172021-02-13T08:54:13  *** chrisguida[m] <chrisguida[m]!chrisguida@gateway/shell/matrix.org/x-uwbcvosxtqwulhdb> has quit IRC (Ping timeout: 265 seconds)
2182021-02-13T08:54:14  *** awesome_doge <awesome_doge!awesome-do@gateway/shell/matrix.org/x-bcawxvbklvxyzwdd> has quit IRC (Ping timeout: 265 seconds)
2192021-02-13T08:55:56  *** satwhale[m] <satwhale[m]!satwhalebi@gateway/shell/matrix.org/x-fkxtyxpyylhahkkd> has quit IRC (Ping timeout: 240 seconds)
2202021-02-13T08:56:04  *** jamesob <jamesob!sid180710@gateway/web/irccloud.com/session> has joined #bitcoin-core-dev
2212021-02-13T08:56:40  *** a5m0 <a5m0!~a5m0@unaffiliated/a5m0> has joined #bitcoin-core-dev
2222021-02-13T08:56:40  *** troygior1hev <troygior1hev!~troygiors@d67-193-140-136.home3.cgocable.net> has joined #bitcoin-core-dev
2232021-02-13T08:56:40  *** adam3us <adam3us!~adam3us@unaffiliated/adam3us> has joined #bitcoin-core-dev
2242021-02-13T08:56:40  *** romanz_ <romanz_!~romanz@93.123.196.104.bc.googleusercontent.com> has joined #bitcoin-core-dev
2252021-02-13T08:56:40  *** nckx <nckx!~nckx@tobias.gr> has joined #bitcoin-core-dev
2262021-02-13T08:56:46  *** nckx <nckx!~nckx@tobias.gr> has quit IRC (Max SendQ exceeded)
2272021-02-13T08:57:11  *** nckx <nckx!~nckx@tobias.gr> has joined #bitcoin-core-dev
2282021-02-13T08:57:46  *** queip <queip!~queip@unaffiliated/rezurus> has joined #bitcoin-core-dev
2292021-02-13T08:59:28  *** nkuttler <nkuttler!~nkuttler@unaffiliated/nkuttler> has joined #bitcoin-core-dev
2302021-02-13T09:00:18  *** harrigan- <harrigan-!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has joined #bitcoin-core-dev
2312021-02-13T09:01:32  *** meshcollider <meshcollider!meshcollid@gateway/shell/ircnow/x-euyphuspntddllnf> has joined #bitcoin-core-dev
2322021-02-13T09:01:32  *** thrasher` <thrasher`!~thrasher@173.209.42.7> has joined #bitcoin-core-dev
2332021-02-13T09:01:32  *** MarcoFalke <MarcoFalke!~none@198.12.116.246> has joined #bitcoin-core-dev
2342021-02-13T09:01:32  *** treyzania <treyzania!~treyzania@paphos.tr3y.io> has joined #bitcoin-core-dev
2352021-02-13T09:02:16  *** harrigan <harrigan!~harrigan@ptr-93-89-242-235.ip.airwire.ie> has quit IRC (Ping timeout: 240 seconds)
2362021-02-13T09:02:42  *** nkuttler <nkuttler!~nkuttler@unaffiliated/nkuttler> has left #bitcoin-core-dev
2372021-02-13T09:04:17  *** jungly <jungly!~jungly@host-79-35-187-205.retail.telecomitalia.it> has joined #bitcoin-core-dev
2382021-02-13T09:19:16  *** mosh <mosh!~chaos@anarchy.consolegfx.com> has quit IRC (Quit: ZNC - https://znc.in)
2392021-02-13T09:20:39  *** mosh <mosh!~chaos@anarchy.consolegfx.com> has joined #bitcoin-core-dev
2402021-02-13T09:23:37  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
2412021-02-13T09:23:37  <bitcoin-git> [bitcoin] martinus opened pull request #21170: bench: Add benchmark to write JSON into a string (master...2021-02-benchmark-BlockToJsonVerboseWrite) https://github.com/bitcoin/bitcoin/pull/21170
2422021-02-13T09:23:38  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
2432021-02-13T09:23:54  *** Thomas[m]1 <Thomas[m]1!thomaseizi@gateway/shell/matrix.org/x-bidqdarffjlpqhkh> has joined #bitcoin-core-dev
2442021-02-13T09:24:50  *** mosh <mosh!~chaos@anarchy.consolegfx.com> has quit IRC (Client Quit)
2452021-02-13T09:25:18  *** mosh <mosh!~chaos@anarchy.consolegfx.com> has joined #bitcoin-core-dev
2462021-02-13T09:32:36  *** suzziminer[m] <suzziminer[m]!suzziminer@gateway/shell/matrix.org/x-vjdzvmrpxzbwwssa> has joined #bitcoin-core-dev
2472021-02-13T09:34:15  *** satwhale[m] <satwhale[m]!satwhalebi@gateway/shell/matrix.org/x-kgtpekfbafupyfny> has joined #bitcoin-core-dev
2482021-02-13T09:34:16  *** chrisguida[m] <chrisguida[m]!chrisguida@gateway/shell/matrix.org/x-wzipmdzlewdyucmw> has joined #bitcoin-core-dev
2492021-02-13T09:34:18  *** awesome_doge <awesome_doge!awesome-do@gateway/shell/matrix.org/x-ocblcwesgcklpyal> has joined #bitcoin-core-dev
2502021-02-13T09:34:51  *** robert_spigler <robert_spigler!robertspig@gateway/shell/matrix.org/x-oxastgasszlqmlqv> has joined #bitcoin-core-dev
2512021-02-13T09:35:02  *** vadorovsky <vadorovsky!vadorovsky@gateway/shell/matrix.org/x-vlqewwvswlmnplyi> has joined #bitcoin-core-dev
2522021-02-13T09:38:57  *** Evel-Knievel <Evel-Knievel!~Evel-Knie@d5152f744.static.telenet.be> has joined #bitcoin-core-dev
2532021-02-13T09:42:26  *** robert_spigler <robert_spigler!robertspig@gateway/shell/matrix.org/x-oxastgasszlqmlqv> has quit IRC (Ping timeout: 240 seconds)
2542021-02-13T09:42:57  *** vadorovsky <vadorovsky!vadorovsky@gateway/shell/matrix.org/x-vlqewwvswlmnplyi> has quit IRC (Ping timeout: 258 seconds)
2552021-02-13T09:43:09  *** Thomas[m]1 <Thomas[m]1!thomaseizi@gateway/shell/matrix.org/x-bidqdarffjlpqhkh> has quit IRC (Ping timeout: 246 seconds)
2562021-02-13T09:43:43  *** awesome_doge <awesome_doge!awesome-do@gateway/shell/matrix.org/x-ocblcwesgcklpyal> has quit IRC (Ping timeout: 258 seconds)
2572021-02-13T09:43:43  *** suzziminer[m] <suzziminer[m]!suzziminer@gateway/shell/matrix.org/x-vjdzvmrpxzbwwssa> has quit IRC (Ping timeout: 258 seconds)
2582021-02-13T09:44:00  *** satwhale[m] <satwhale[m]!satwhalebi@gateway/shell/matrix.org/x-kgtpekfbafupyfny> has quit IRC (Ping timeout: 265 seconds)
2592021-02-13T09:44:01  *** chrisguida[m] <chrisguida[m]!chrisguida@gateway/shell/matrix.org/x-wzipmdzlewdyucmw> has quit IRC (Ping timeout: 265 seconds)
2602021-02-13T10:01:00  *** harrigan- <harrigan-!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has quit IRC (Read error: Connection reset by peer)
2612021-02-13T10:02:43  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has quit IRC (Remote host closed the connection)
2622021-02-13T10:03:10  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has joined #bitcoin-core-dev
2632021-02-13T10:03:19  *** Yogibear <Yogibear!b752cc2e@183.82.204.46> has joined #bitcoin-core-dev
2642021-02-13T10:03:57  *** harrigan <harrigan!~harrigan@ptr-93-89-242-235.ip.airwire.ie> has joined #bitcoin-core-dev
2652021-02-13T10:04:04  *** Yogibear <Yogibear!b752cc2e@183.82.204.46> has quit IRC (Client Quit)
2662021-02-13T10:06:59  *** rex4539 <rex4539!~rex4539@gateway/tor-sasl/rex4539> has quit IRC ()
2672021-02-13T10:08:20  *** nkuttler <nkuttler!~nkuttler@unaffiliated/nkuttler> has joined #bitcoin-core-dev
2682021-02-13T10:18:28  *** rex4539 <rex4539!~rex4539@gateway/tor-sasl/rex4539> has joined #bitcoin-core-dev
2692021-02-13T10:24:44  *** Mugisha <Mugisha!~Mugisha@154.70.198.175> has joined #bitcoin-core-dev
2702021-02-13T10:27:52  *** vasild <vasild!~vd@gateway/tor-sasl/vasild> has quit IRC (Disconnected by services)
2712021-02-13T10:27:53  *** vasild_ <vasild_!~vd@gateway/tor-sasl/vasild> has joined #bitcoin-core-dev
2722021-02-13T10:27:55  *** vasild_ is now known as vasild
2732021-02-13T10:37:20  *** vadorovsky <vadorovsky!vadorovsky@gateway/shell/matrix.org/x-stbpjwleuymxmxyp> has joined #bitcoin-core-dev
2742021-02-13T10:38:43  *** robert_spigler <robert_spigler!robertspig@gateway/shell/matrix.org/x-ygwwwiqyielnmezr> has joined #bitcoin-core-dev
2752021-02-13T10:41:56  *** Mugisha <Mugisha!~Mugisha@154.70.198.175> has quit IRC (Ping timeout: 240 seconds)
2762021-02-13T10:51:29  *** Thomas[m]1 <Thomas[m]1!thomaseizi@gateway/shell/matrix.org/x-ycyubxfpwkcfbbzr> has joined #bitcoin-core-dev
2772021-02-13T10:54:42  *** suzziminer[m] <suzziminer[m]!suzziminer@gateway/shell/matrix.org/x-ghxqzhhaypepsody> has joined #bitcoin-core-dev
2782021-02-13T10:54:51  *** awesome_doge <awesome_doge!awesome-do@gateway/shell/matrix.org/x-fbpgallnldigntmy> has joined #bitcoin-core-dev
2792021-02-13T10:56:14  *** chrisguida[m] <chrisguida[m]!chrisguida@gateway/shell/matrix.org/x-ektbmspdcwetbqnu> has joined #bitcoin-core-dev
2802021-02-13T10:56:18  *** satwhale[m] <satwhale[m]!satwhalebi@gateway/shell/matrix.org/x-atdhqqnvbxlqutcc> has joined #bitcoin-core-dev
2812021-02-13T11:02:45  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Remote host closed the connection)
2822021-02-13T11:03:44  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
2832021-02-13T11:07:46  *** AaronvanW <AaronvanW!~AaronvanW@unaffiliated/aaronvanw> has joined #bitcoin-core-dev
2842021-02-13T11:11:48  *** Talkless <Talkless!~Talkless@mail.dargis.net> has joined #bitcoin-core-dev
2852021-02-13T11:20:06  *** Mugisha <Mugisha!~Mugisha@154.70.198.176> has joined #bitcoin-core-dev
2862021-02-13T11:20:29  *** Mugisha is now known as Guest37066
2872021-02-13T11:23:26  *** Guest37066 <Guest37066!~Mugisha@154.70.198.176> has quit IRC (Client Quit)
2882021-02-13T11:27:14  *** ovovo <ovovo!~ovovo@unaffiliated/ovovo> has joined #bitcoin-core-dev
2892021-02-13T11:28:34  *** owowo <owowo!~ovovo@unaffiliated/ovovo> has quit IRC (Ping timeout: 272 seconds)
2902021-02-13T11:32:04  *** Evel-Knievel <Evel-Knievel!~Evel-Knie@d5152f744.static.telenet.be> has quit IRC (Ping timeout: 240 seconds)
2912021-02-13T11:46:47  *** Guyver2 <Guyver2!Guyver@guyver2.xs4all.nl> has joined #bitcoin-core-dev
2922021-02-13T11:48:21  *** braydonf <braydonf!~braydon@gateway/tor-sasl/braydonf> has quit IRC (Ping timeout: 268 seconds)
2932021-02-13T11:49:37  *** braydonf <braydonf!~braydon@gateway/tor-sasl/braydonf> has joined #bitcoin-core-dev
2942021-02-13T11:55:41  *** owowo <owowo!~ovovo@2001:ac8:28:86::4e> has joined #bitcoin-core-dev
2952021-02-13T11:57:35  *** ovovo <ovovo!~ovovo@unaffiliated/ovovo> has quit IRC (Ping timeout: 272 seconds)
2962021-02-13T12:03:03  <michaelfolkson> I'm not 100 percent clear on when you should open an issue in the Core repo if you get an error you are not expecting so posting here. Maybe this should be in #bitcoin even
2972021-02-13T12:03:45  <michaelfolkson> Regardless I upgraded one of my 0.19 nodes (Ubuntu) to 0.21 and got this error message
2982021-02-13T12:03:53  <michaelfolkson> "2021-02-13T11:42:47Z ERROR: DeserializeFileDB: Failed to open file /home/michael/.bitcoin/anchors.dat"
2992021-02-13T12:04:19  <michaelfolkson> Is that expected?
3002021-02-13T12:07:59  <michaelfolkson> anchors.dat was only introduced in 0.21 right? But why should it be an error message? It is expected behavior if upgrading
3012021-02-13T12:08:16  <michaelfolkson> (not to have an anchor.dat file)
3022021-02-13T12:13:11  <michaelfolkson> I guess not having the file is a reasonable motivation for an error message
3032021-02-13T12:14:53  <michaelfolkson> I'm just misunderstanding when it should be labeled ERROR and when it should be "nothing to worry about" logging
3042021-02-13T12:48:56  *** mol_ <mol_!~mol@unaffiliated/molly> has quit IRC (Ping timeout: 240 seconds)
3052021-02-13T13:07:19  *** sipa <sipa!~pw@gateway/tor-sasl/sipa1024> has quit IRC (Remote host closed the connection)
3062021-02-13T13:07:37  *** sipa <sipa!~pw@gateway/tor-sasl/sipa1024> has joined #bitcoin-core-dev
3072021-02-13T13:13:27  *** jb55 <jb55!~jb55@gateway/tor-sasl/jb55> has quit IRC (Ping timeout: 268 seconds)
3082021-02-13T13:27:10  *** jb55 <jb55!~jb55@gateway/tor-sasl/jb55> has joined #bitcoin-core-dev
3092021-02-13T13:30:32  *** othe1 <othe1!~othe@217.146.82.202> has quit IRC (Remote host closed the connection)
3102021-02-13T13:33:43  *** harrigan- <harrigan-!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has joined #bitcoin-core-dev
3112021-02-13T13:34:30  *** harrigan <harrigan!~harrigan@ptr-93-89-242-235.ip.airwire.ie> has quit IRC (Ping timeout: 246 seconds)
3122021-02-13T14:04:37  *** ghost43 <ghost43!~daer@gateway/tor-sasl/daer> has quit IRC (Remote host closed the connection)
3132021-02-13T14:04:59  *** ghost43 <ghost43!~daer@gateway/tor-sasl/daer> has joined #bitcoin-core-dev
3142021-02-13T14:13:19  *** jonatack <jonatack!~jon@37.164.198.87> has joined #bitcoin-core-dev
3152021-02-13T14:15:19  *** kephra <kephra!~kephra@195.140.213.38> has joined #bitcoin-core-dev
3162021-02-13T14:18:49  *** mol <mol!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
3172021-02-13T14:49:39  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Ping timeout: 268 seconds)
3182021-02-13T14:51:18  *** jonatack <jonatack!~jon@37.164.198.87> has quit IRC (Read error: Connection reset by peer)
3192021-02-13T14:51:44  *** jonatack <jonatack!~jon@37.164.198.87> has joined #bitcoin-core-dev
3202021-02-13T14:52:31  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
3212021-02-13T15:32:05  *** jungly <jungly!~jungly@host-79-35-187-205.retail.telecomitalia.it> has quit IRC (Ping timeout: 240 seconds)
3222021-02-13T15:32:53  *** kcalvinalvin <kcalvinalvin!~kcalvinal@ec2-52-79-199-97.ap-northeast-2.compute.amazonaws.com> has quit IRC (Quit: ZNC 1.7.4 - https://znc.in)
3232021-02-13T15:33:44  *** tralfaz <tralfaz!uid458765@gateway/web/irccloud.com/x-cimbsdwgmuaexqlf> has joined #bitcoin-core-dev
3242021-02-13T15:36:56  *** kcalvinalvin <kcalvinalvin!~kcalvinal@ec2-52-79-199-97.ap-northeast-2.compute.amazonaws.com> has joined #bitcoin-core-dev
3252021-02-13T15:38:20  <jonatack> michaelfolkson: that "Failed to open file" error message if no anchors.dat is found seems to be expected, if a bit surprising after an upgrade, see addrdb.cpp::DeserializeFileDB() and streams.h::CAutoFile::IsNull(), and git grep -ni "failed to open" shows that this seems to be the standard error message on file.IsNull()
3262021-02-13T15:40:29  <jonatack> thatsaid, idk if there is a bool flag or function for "we just upgraded" that could be checked...
3272021-02-13T15:42:09  <jonatack> (if the version of bitcoind is persisted somewhere)
3282021-02-13T15:42:52  <jonatack> i'm not aware of one
3292021-02-13T15:43:34  <jonatack> could it be added to settings.json?
3302021-02-13T15:44:09  <michaelfolkson> Instinctively when I see ERROR I think "Uh oh something is wrong" rather than "Don't worry this file isn't yet created but we can create it for you"
3312021-02-13T15:46:57  <michaelfolkson> Presumably if you installed 0.21 from scratch (ie not upgrading from 0.19 to 0.21) you would also get that error message
3322021-02-13T15:47:16  <jonatack> sure. my guess is the added complexity required to handle that more-or-less-one-off case wasn't considered to be worth it, if it was considered
3332021-02-13T15:47:44  <michaelfolkson> Right, makes sense, thanks
3342021-02-13T16:08:19  *** harrigan- <harrigan-!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has quit IRC (Read error: Connection reset by peer)
3352021-02-13T16:09:58  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has joined #bitcoin-core-dev
3362021-02-13T16:22:22  *** tannakartikey <tannakartikey!~kartikeyt@2409:4055:19e:f498:cc56:64be:11dc:7895> has joined #bitcoin-core-dev
3372021-02-13T16:24:24  *** rc_423_ <rc_423_!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has quit IRC (Ping timeout: 256 seconds)
3382021-02-13T16:24:58  *** jonatack <jonatack!~jon@37.164.198.87> has quit IRC (Ping timeout: 256 seconds)
3392021-02-13T16:24:59  *** rc_423 <rc_423!~r_423@cpe-75-185-100-189.cinci.res.rr.com> has joined #bitcoin-core-dev
3402021-02-13T16:27:18  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has quit IRC (Read error: Connection reset by peer)
3412021-02-13T16:29:24  *** jonatack <jonatack!jon@gateway/vpn/airvpn/jonatack> has joined #bitcoin-core-dev
3422021-02-13T16:31:58  *** tannakartikey <tannakartikey!~kartikeyt@2409:4055:19e:f498:cc56:64be:11dc:7895> has quit IRC (Remote host closed the connection)
3432021-02-13T16:32:32  *** Smartcyberhacker <Smartcyberhacker!8ac7344b@138.199.52.75> has joined #bitcoin-core-dev
3442021-02-13T16:33:24  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has joined #bitcoin-core-dev
3452021-02-13T16:35:34  *** Smartcyberhacker <Smartcyberhacker!8ac7344b@138.199.52.75> has quit IRC (Client Quit)
3462021-02-13T16:38:16  *** jonatack <jonatack!jon@gateway/vpn/airvpn/jonatack> has quit IRC (Ping timeout: 272 seconds)
3472021-02-13T16:41:18  *** jonatack <jonatack!~jon@37.164.198.87> has joined #bitcoin-core-dev
3482021-02-13T16:47:01  *** jonatack <jonatack!~jon@37.164.198.87> has quit IRC (Ping timeout: 256 seconds)
3492021-02-13T16:47:58  *** jonatack <jonatack!~jon@37.164.198.87> has joined #bitcoin-core-dev
3502021-02-13T16:49:45  *** promag <promag!~promag@188.250.84.129> has quit IRC (Remote host closed the connection)
3512021-02-13T16:50:20  *** kcalvinalvin <kcalvinalvin!~kcalvinal@ec2-52-79-199-97.ap-northeast-2.compute.amazonaws.com> has quit IRC (Quit: ZNC 1.7.4 - https://znc.in)
3522021-02-13T16:52:22  *** kcalvinalvin <kcalvinalvin!~kcalvinal@ec2-52-79-199-97.ap-northeast-2.compute.amazonaws.com> has joined #bitcoin-core-dev
3532021-02-13T16:55:25  *** rex4539 <rex4539!~rex4539@gateway/tor-sasl/rex4539> has quit IRC ()
3542021-02-13T17:16:54  *** justanotheruser <justanotheruser!~justanoth@unaffiliated/justanotheruser> has joined #bitcoin-core-dev
3552021-02-13T17:23:59  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has quit IRC (Read error: Connection reset by peer)
3562021-02-13T17:26:24  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has joined #bitcoin-core-dev
3572021-02-13T17:37:35  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
3582021-02-13T17:37:35  <bitcoin-git> [bitcoin] laanwj pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/bf3189eda65d...b08cbd09b8f0
3592021-02-13T17:37:36  <bitcoin-git> bitcoin/master c943326 Luke Dashjr: doc/bips: Add BIPs 43, 44, 49, and 84
3602021-02-13T17:37:36  <bitcoin-git> bitcoin/master b08cbd0 Wladimir J. van der Laan: Merge #21028: doc/bips: Add BIPs 43, 44, 49, and 84
3612021-02-13T17:37:38  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
3622021-02-13T17:37:55  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
3632021-02-13T17:37:55  <bitcoin-git> [bitcoin] laanwj merged pull request #21028: doc/bips: Add BIPs 43, 44, 49, and 84 (master...bips_44-49-84) https://github.com/bitcoin/bitcoin/pull/21028
3642021-02-13T17:37:57  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
3652021-02-13T17:54:31  *** rex4539 <rex4539!~rex4539@gateway/tor-sasl/rex4539> has joined #bitcoin-core-dev
3662021-02-13T17:55:57  *** subatuba21 <subatuba21!18049855@c-24-4-152-85.hsd1.ca.comcast.net> has joined #bitcoin-core-dev
3672021-02-13T17:56:39  *** subatuba21 <subatuba21!18049855@c-24-4-152-85.hsd1.ca.comcast.net> has quit IRC (Client Quit)
3682021-02-13T18:28:39  *** elector <elector!~elector@gateway/tor-sasl/elector> has joined #bitcoin-core-dev
3692021-02-13T18:30:38  *** justanotheruser <justanotheruser!~justanoth@unaffiliated/justanotheruser> has quit IRC (Ping timeout: 264 seconds)
3702021-02-13T18:41:16  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has quit IRC (Read error: Connection reset by peer)
3712021-02-13T18:42:37  *** ziyuezhou <ziyuezhou!4cf235c2@76-242-53-194.lightspeed.tukrga.sbcglobal.net> has joined #bitcoin-core-dev
3722021-02-13T18:42:44  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has joined #bitcoin-core-dev
3732021-02-13T18:43:25  *** ziyuezhou <ziyuezhou!4cf235c2@76-242-53-194.lightspeed.tukrga.sbcglobal.net> has quit IRC (Client Quit)
3742021-02-13T19:07:11  *** justanotheruser <justanotheruser!~justanoth@unaffiliated/justanotheruser> has joined #bitcoin-core-dev
3752021-02-13T19:16:32  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has quit IRC (Read error: Connection reset by peer)
3762021-02-13T19:20:20  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has joined #bitcoin-core-dev
3772021-02-13T19:24:35  *** dr_gorilla <dr_gorilla!53865afd@ip-83-134-90-253.dsl.scarlet.be> has joined #bitcoin-core-dev
3782021-02-13T19:42:34  *** miketwenty1 <miketwenty1!~miketwent@136.55.84.49> has joined #bitcoin-core-dev
3792021-02-13T19:42:52  *** miketwenty1 <miketwenty1!~miketwent@136.55.84.49> has quit IRC (Client Quit)
3802021-02-13T19:43:16  *** dr_gorilla <dr_gorilla!53865afd@ip-83-134-90-253.dsl.scarlet.be> has quit IRC (Quit: Connection closed)
3812021-02-13T19:53:57  *** mol_ <mol_!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
3822021-02-13T19:54:04  *** mol <mol!~mol@unaffiliated/molly> has quit IRC (Ping timeout: 256 seconds)
3832021-02-13T20:05:50  *** jungly <jungly!~jungly@host-79-35-187-205.retail.telecomitalia.it> has joined #bitcoin-core-dev
3842021-02-13T20:05:53  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
3852021-02-13T20:05:53  <bitcoin-git> [bitcoin] jonatack opened pull request #21171: Save client version to the settings file on shutdown (master...persist-version-on-shutdown) https://github.com/bitcoin/bitcoin/pull/21171
3862021-02-13T20:05:57  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
3872021-02-13T20:06:11  <jonatack> michaelfolkson: ^
3882021-02-13T20:11:16  <michaelfolkson> Cool, I think this could be useful though others may need to be convinced on what exactly it will be used for
3892021-02-13T20:12:10  <michaelfolkson> Potentially it is a first step to ironing out some kinks in the upgrading process?
3902021-02-13T20:12:50  <michaelfolkson> Recognizing when an upgrade is happening and providing better logging around it to the user?
3912021-02-13T20:15:38  <jonatack> Yes, anything that could benefit from knowing if the client version changed since last shutdown.
3922021-02-13T20:17:08  <michaelfolkson> Nice, thanks for thinking about it and opening a PR on it. Wasn't expecting that :)
3932021-02-13T20:18:23  <jonatack> 👍
3942021-02-13T20:27:52  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has quit IRC (Read error: Connection reset by peer)
3952021-02-13T20:32:56  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has joined #bitcoin-core-dev
3962021-02-13T20:33:53  *** tralfaz <tralfaz!uid458765@gateway/web/irccloud.com/x-cimbsdwgmuaexqlf> has quit IRC (Quit: Connection closed for inactivity)
3972021-02-13T20:37:35  *** davterra <davterra!~davterra@gateway/tor-sasl/tralfaz> has quit IRC (Quit: Leaving)
3982021-02-13T20:52:05  <luke-jr> I'm not sure we want to behave the same if some user sets -version=foo?
3992021-02-13T20:53:01  <luke-jr> maybe calling it "lastrunversion" or something less accident-prone
4002021-02-13T20:59:30  *** fromBlacks <fromBlacks!5e36309d@94.54.48.157> has joined #bitcoin-core-dev
4012021-02-13T21:02:02  *** fromBlacks <fromBlacks!5e36309d@94.54.48.157> has quit IRC (Client Quit)
4022021-02-13T21:04:13  <jonatack> luke-jr: yes, hesitated to call the field "last_run_version" and went for the simpler "version", pending feedback (I'm confused by what you mean with "user sets -version=foo")
4032021-02-13T21:13:21  *** jonatack_ <jonatack_!~jon@37.164.57.52> has joined #bitcoin-core-dev
4042021-02-13T21:15:24  <luke-jr> jonatack: anything in settings.json doubles as a bitcoin.conf option at least, on?
4052021-02-13T21:15:25  <luke-jr> no?8
4062021-02-13T21:16:45  *** jonatack <jonatack!~jon@37.164.198.87> has quit IRC (Ping timeout: 256 seconds)
4072021-02-13T21:23:55  <jonatack_> gleb: in case it's helpful, after your latest push the erlay PR now builds for me cleanly and the functional tests run without --enable-debug, but I am still seeing the many lock order errors I described in the PR comments after building with --enable-debug
4082021-02-13T21:24:00  <jonatack_> luke-jr: checking
4092021-02-13T21:25:21  *** prayank <prayank!~Prayank@2409:4053:10:1e6e:f4a9:ce50:495f:9508> has joined #bitcoin-core-dev
4102021-02-13T21:27:57  *** justanotheruser <justanotheruser!~justanoth@unaffiliated/justanotheruser> has quit IRC (Ping timeout: 260 seconds)
4112021-02-13T21:28:24  <jonatack_> luke-jr: yes, seems so. hm, -version isn't a conf option a
4122021-02-13T21:28:40  <jonatack_> afaik, but point taken to maybe use a more specific field name
4132021-02-13T21:32:54  *** Guyver2 <Guyver2!Guyver@guyver2.xs4all.nl> has quit IRC (Quit: Going offline, see ya! (www.adiirc.com))
4142021-02-13T21:34:24  <jonatack_> luke-jr: thanks
4152021-02-13T21:35:38  <luke-jr> np
4162021-02-13T21:48:26  <prayank> only "labelled" addresses belong to address book in bitcoin core wallet?
4172021-02-13T21:49:30  <luke-jr> prayank: not anymore
4182021-02-13T21:49:37  <luke-jr> IIRC
4192021-02-13T21:50:08  <prayank> Interesting. I have few questions.
4202021-02-13T21:52:25  <luke-jr> prayank: define "labelled" ☺
4212021-02-13T21:53:32  <luke-jr> in particular, pay attention to the distinctions in c5966a87d1f
4222021-02-13T21:54:20  <prayank> luke-jr: setlabel "address" "my-label"
4232021-02-13T21:55:59  <prayank> Checking https://github.com/bitcoin/bitcoin/commit/c5966a87d1fdd7a98f2baee5b2deddd541fdfb5a right now
4242021-02-13T21:56:02  <luke-jr> prayank: that will turn change into non-change
4252021-02-13T21:56:05  <luke-jr> I think
4262021-02-13T21:56:28  <prayank> luke-jr: yeah thats the issue I need to fix :)
4272021-02-13T21:56:35  <prayank> My questions are:
4282021-02-13T21:56:38  <prayank> 1. Is "wallet.cpp" the only file I should be searching in if trying to fix something related to change addresses?
4292021-02-13T21:56:39  <prayank> Context: https://github.com/bitcoin/bitcoin/issues/20795#issuecomment-770267178
4302021-02-13T21:56:39  <prayank> 2. According to comments in Cwallet::IsChange, payment to a script that is ours, but is not in the address book is "change address". Is this correct or its more complex?
4312021-02-13T21:57:07  <luke-jr> prayank: it can be in the address book now
4322021-02-13T21:57:59  <luke-jr> just not with a label
4332021-02-13T21:58:34  <prayank> luke-jr: What is address book in bitcoin core wallet? What makes an address belong to address book?
4342021-02-13T21:59:10  <luke-jr> m_address_book
4352021-02-13T22:00:43  *** kephra <kephra!~kephra@195.140.213.38> has quit IRC (Remote host closed the connection)
4362021-02-13T22:02:55  <prayank> luke-jr: Thanks
4372021-02-13T22:07:56  *** promag <promag!~promag@188.250.84.129> has joined #bitcoin-core-dev
4382021-02-13T22:17:29  *** banux1 <banux1!~banux@195.140.213.38> has joined #bitcoin-core-dev
4392021-02-13T22:24:58  *** prayank1 <prayank1!~Prayank@49.15.234.141> has joined #bitcoin-core-dev
4402021-02-13T22:25:17  *** prayank1 <prayank1!~Prayank@49.15.234.141> has left #bitcoin-core-dev
4412021-02-13T22:26:26  *** prayank <prayank!~Prayank@2409:4053:10:1e6e:f4a9:ce50:495f:9508> has quit IRC (Ping timeout: 264 seconds)
4422021-02-13T22:31:24  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
4432021-02-13T22:31:24  <bitcoin-git> [bitcoin] laanwj pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/b08cbd09b8f0...43981ee2c84a
4442021-02-13T22:31:25  <bitcoin-git> bitcoin/master 9305862 Sjors Provoost: wallet: load flags before everything else
4452021-02-13T22:31:25  <bitcoin-git> bitcoin/master 43981ee Wladimir J. van der Laan: Merge #21127: wallet: load flags before everything else
4462021-02-13T22:31:32  *** vasild <vasild!~vd@gateway/tor-sasl/vasild> has quit IRC (Ping timeout: 268 seconds)
4472021-02-13T22:31:36  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
4482021-02-13T22:31:47  *** jonatack_ <jonatack_!~jon@37.164.57.52> has quit IRC (Quit: jonatack_)
4492021-02-13T22:31:54  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
4502021-02-13T22:31:54  <bitcoin-git> [bitcoin] laanwj merged pull request #21127: wallet: load flags before everything else (master...2021/02/wallet_flags) https://github.com/bitcoin/bitcoin/pull/21127
4512021-02-13T22:31:55  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
4522021-02-13T22:32:11  *** jonatack <jonatack!~jon@37.164.57.52> has joined #bitcoin-core-dev
4532021-02-13T22:32:49  *** vasild <vasild!~vd@gateway/tor-sasl/vasild> has joined #bitcoin-core-dev
4542021-02-13T22:40:02  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
4552021-02-13T22:40:02  <bitcoin-git> [bitcoin] laanwj pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/43981ee2c84a...e4f0c4cd73d8
4562021-02-13T22:40:03  <bitcoin-git> bitcoin/master fa051c2 MarcoFalke: doc: Guix is shipped in Debian and Ubuntu
4572021-02-13T22:40:03  <bitcoin-git> bitcoin/master e4f0c4c Wladimir J. van der Laan: Merge #21163: doc: Guix is shipped in Debian and Ubuntu
4582021-02-13T22:40:05  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
4592021-02-13T22:40:22  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
4602021-02-13T22:40:22  <bitcoin-git> [bitcoin] laanwj merged pull request #21163: doc: Guix is shipped in Debian and Ubuntu (master...2102-docGuix) https://github.com/bitcoin/bitcoin/pull/21163
4612021-02-13T22:40:23  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
4622021-02-13T22:48:28  *** jonatack <jonatack!~jon@37.164.57.52> has quit IRC (Read error: Connection reset by peer)
4632021-02-13T22:48:34  *** jonatack_ <jonatack_!~jon@37.164.57.52> has joined #bitcoin-core-dev
4642021-02-13T22:56:48  *** jonatack_ <jonatack_!~jon@37.164.57.52> has quit IRC (Read error: Connection reset by peer)
4652021-02-13T22:56:54  *** jonatack__ <jonatack__!~jon@37.164.57.52> has joined #bitcoin-core-dev
4662021-02-13T22:59:58  *** Talkless <Talkless!~Talkless@mail.dargis.net> has quit IRC (Quit: Konversation terminated!)
4672021-02-13T23:03:00  *** jonatack__ <jonatack__!~jon@37.164.57.52> has quit IRC (Quit: jonatack__)
4682021-02-13T23:03:39  *** jonatack <jonatack!~jon@37.164.57.52> has joined #bitcoin-core-dev
4692021-02-13T23:09:24  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has quit IRC (Read error: Connection reset by peer)
4702021-02-13T23:10:42  *** harrigan <harrigan!~harrigan@ptr-93-89-242-202.ip.airwire.ie> has joined #bitcoin-core-dev
4712021-02-13T23:17:03  *** promag <promag!~promag@188.250.84.129> has quit IRC (Remote host closed the connection)
4722021-02-13T23:18:22  *** justanotheruser <justanotheruser!~justanoth@unaffiliated/justanotheruser> has joined #bitcoin-core-dev
4732021-02-13T23:34:28  *** jonatack <jonatack!~jon@37.164.57.52> has quit IRC (Read error: Connection reset by peer)
4742021-02-13T23:36:40  *** jonatack <jonatack!~jon@37.164.57.52> has joined #bitcoin-core-dev
4752021-02-13T23:37:15  *** jonatack <jonatack!~jon@37.164.57.52> has quit IRC (Read error: Connection reset by peer)
4762021-02-13T23:37:21  *** jonatack_ <jonatack_!~jon@37.164.57.52> has joined #bitcoin-core-dev
4772021-02-13T23:42:48  *** jonatack_ <jonatack_!~jon@37.164.57.52> has quit IRC (Read error: Connection reset by peer)
4782021-02-13T23:43:16  *** jonatack_ <jonatack_!~jon@37.164.57.52> has joined #bitcoin-core-dev