12023-03-03T00:00:42 *** jhns_ <jhns_!~johannes@johannes.dynip.online> has joined #bitcoin-core-dev
22023-03-03T00:01:04 *** p2plife_ <p2plife_!~p2plife@vps-46773dd2.vps.ovh.net> has joined #bitcoin-core-dev
32023-03-03T00:01:16 *** p2plife <p2plife!~p2plife@vps-46773dd2.vps.ovh.net> has quit IRC (Quit: quit)
42023-03-03T00:02:31 *** jhns <jhns!~johannes@johannes.dynip.online> has quit IRC (Read error: Connection reset by peer)
52023-03-03T00:02:32 *** jhns_ is now known as jhns
62023-03-03T00:08:30 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
72023-03-03T00:10:22 *** sipsorcery_ <sipsorcery_!~sipsorcer@213.233.155.173> has quit IRC (Ping timeout: 252 seconds)
82023-03-03T00:12:02 *** instagibbs1 <instagibbs1!~instagibb@pool-100-15-126-231.washdc.fios.verizon.net> has joined #bitcoin-core-dev
92023-03-03T00:13:15 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 260 seconds)
102023-03-03T00:14:19 *** instagibbs <instagibbs!~instagibb@pool-100-15-126-231.washdc.fios.verizon.net> has quit IRC (Ping timeout: 268 seconds)
112023-03-03T00:14:19 *** instagibbs1 is now known as instagibbs
122023-03-03T00:25:58 *** cryptapus <cryptapus!~cryptapus@user/cryptapus> has quit IRC (Read error: Connection reset by peer)
132023-03-03T00:28:10 *** PaperSword <PaperSword!~Thunderbi@securemail.qrsnap.io> has joined #bitcoin-core-dev
142023-03-03T00:33:41 <PaperSword> If a data type just consists of 2 string should one use pair or create a new typedef?
152023-03-03T00:34:10 *** Guest6 <Guest6!~Guest6@162.255.44.87> has joined #bitcoin-core-dev
162023-03-03T00:39:51 *** Guest6 <Guest6!~Guest6@162.255.44.87> has quit IRC (Quit: Client closed)
172023-03-03T00:42:31 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
182023-03-03T00:46:59 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 264 seconds)
192023-03-03T00:47:54 <PaperSword> If a data type just consists of 2 strings should one use pair or create a new typedef struct or class?
202023-03-03T00:49:38 <_aj_> a struct makes it easier to not get confused about which string is which
212023-03-03T00:49:53 <_aj_> no general rule though, i think?
222023-03-03T00:50:45 <_aj_> (if it's c++ (pair) you don't need a typedef if you create a struct/class?)
232023-03-03T00:55:50 <PaperSword> Yeah that is correct the biggest difference that i can see is that a pair is less readable because of the fact each member is accessed by .first and .second
242023-03-03T00:55:51 <PaperSword> A struct on the other hand you must declare it, but allows for access to memebers via a name.
252023-03-03T00:55:51 <PaperSword> In my cast I am creating maps of bech32 HRPs to the network string name.
262023-03-03T01:05:40 <_aj_> use structured binding instead of .first and .second? auto [a,b] = pair; ?
272023-03-03T01:31:56 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
282023-03-03T01:36:35 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 256 seconds)
292023-03-03T01:46:09 *** cryptapus <cryptapus!~cryptapus@user/cryptapus> has joined #bitcoin-core-dev
302023-03-03T01:58:37 *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Quit: Leaving)
312023-03-03T01:58:56 *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
322023-03-03T02:01:48 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
332023-03-03T02:06:03 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
342023-03-03T02:21:08 <PaperSword> @_aj_ the structured binding feature looks like a very elegant solution. C++17 and newer only.
352023-03-03T02:24:00 *** jarthur <jarthur!~jarthur@user/jarthur> has quit IRC (Ping timeout: 248 seconds)
362023-03-03T02:27:17 *** jarthur <jarthur!~jarthur@user/jarthur> has joined #bitcoin-core-dev
372023-03-03T02:31:09 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has joined #bitcoin-core-dev
382023-03-03T02:36:09 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Ping timeout: 268 seconds)
392023-03-03T02:41:45 *** onetwo <onetwo!~onetwo@user/onetwo> has quit IRC (Read error: Connection reset by peer)
402023-03-03T02:44:19 *** onetwo <onetwo!~onetwo@user/onetwo> has joined #bitcoin-core-dev
412023-03-03T02:56:51 <sipa> use `auto& [a, b] = pair;` to avoid copies if they're non-trivial element types (e.g. strings you should not copy)
422023-03-03T02:58:58 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has joined #bitcoin-core-dev
432023-03-03T03:03:33 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Ping timeout: 255 seconds)
442023-03-03T03:12:13 *** robszarka <robszarka!~szarka@2001:48f8:9004:580:ac1a:2709:2df2:8f61> has joined #bitcoin-core-dev
452023-03-03T03:15:12 *** rszarka <rszarka!~szarka@2001-48F8-9004-580-E936-F7-9F82-77B1-static.midco.net> has quit IRC (Ping timeout: 248 seconds)
462023-03-03T03:36:36 <PaperSword> Thanks @sipa! Yeah these structured bindings are a very cool feature I had not explored.
472023-03-03T03:37:53 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
482023-03-03T03:42:08 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 246 seconds)
492023-03-03T03:48:46 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has joined #bitcoin-core-dev
502023-03-03T03:53:03 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Ping timeout: 248 seconds)
512023-03-03T04:05:56 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
522023-03-03T04:10:20 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 260 seconds)
532023-03-03T04:11:33 *** jon_atack <jon_atack!~jonatack@user/jonatack> has joined #bitcoin-core-dev
542023-03-03T04:14:03 *** jonatack <jonatack!~jonatack@user/jonatack> has quit IRC (Ping timeout: 248 seconds)
552023-03-03T04:22:32 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
562023-03-03T04:27:12 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
572023-03-03T04:33:17 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
582023-03-03T04:37:55 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 256 seconds)
592023-03-03T04:44:22 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has joined #bitcoin-core-dev
602023-03-03T04:46:41 *** realies <realies!~realies@user/realies> has quit IRC (Quit: ~)
612023-03-03T04:47:04 *** realies <realies!~realies@user/realies> has joined #bitcoin-core-dev
622023-03-03T04:49:21 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Ping timeout: 268 seconds)
632023-03-03T04:52:16 *** realies <realies!~realies@user/realies> has quit IRC (Ping timeout: 248 seconds)
642023-03-03T05:01:01 *** cmirror <cmirror!~cmirror@4.53.92.114> has quit IRC (Remote host closed the connection)
652023-03-03T05:01:34 *** cmirror <cmirror!~cmirror@4.53.92.114> has joined #bitcoin-core-dev
662023-03-03T05:04:32 *** puchka <puchka!~puchka@185.203.122.219> has quit IRC (Ping timeout: 248 seconds)
672023-03-03T05:06:28 *** puchka <puchka!~puchka@185.203.122.224> has joined #bitcoin-core-dev
682023-03-03T05:09:27 *** realies <realies!~realies@user/realies> has joined #bitcoin-core-dev
692023-03-03T05:12:26 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
702023-03-03T05:14:24 *** realies <realies!~realies@user/realies> has quit IRC (Quit: ~)
712023-03-03T05:16:59 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 264 seconds)
722023-03-03T05:23:14 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
732023-03-03T05:27:28 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
742023-03-03T05:35:07 *** dougefish_ <dougefish_!~dougefish@2a00:a041:3c18:b400:1ac0:4dff:fe34:3985> has quit IRC (Ping timeout: 248 seconds)
752023-03-03T05:39:20 *** dougefish <dougefish!~dougefish@2a00:a041:3c18:b400:1ac0:4dff:fe34:3985> has joined #bitcoin-core-dev
762023-03-03T05:45:37 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has joined #bitcoin-core-dev
772023-03-03T05:48:32 *** puchka <puchka!~puchka@185.203.122.224> has quit IRC (Ping timeout: 268 seconds)
782023-03-03T05:49:51 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Ping timeout: 248 seconds)
792023-03-03T05:50:15 *** puchka <puchka!~puchka@185.203.122.224> has joined #bitcoin-core-dev
802023-03-03T06:19:15 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
812023-03-03T06:23:52 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 252 seconds)
822023-03-03T06:30:08 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has joined #bitcoin-core-dev
832023-03-03T06:34:19 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Ping timeout: 248 seconds)
842023-03-03T06:40:55 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
852023-03-03T06:45:25 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 256 seconds)
862023-03-03T06:46:59 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
872023-03-03T06:47:45 *** TheRec_ <TheRec_!~toto@84-75-225-47.dclient.hispeed.ch> has joined #bitcoin-core-dev
882023-03-03T06:51:22 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 252 seconds)
892023-03-03T06:55:17 *** jarthur <jarthur!~jarthur@user/jarthur> has quit IRC (*.net *.split)
902023-03-03T06:55:17 *** dviola <dviola!~diego@179.235.30.21> has quit IRC (*.net *.split)
912023-03-03T06:55:17 *** b_101 <b_101!~robert@193.37.254.131> has quit IRC (*.net *.split)
922023-03-03T06:55:17 *** TheRec <TheRec!~toto@user/therec> has quit IRC (*.net *.split)
932023-03-03T06:55:17 *** outfox <outfox!~outfox@user/outfox> has quit IRC (*.net *.split)
942023-03-03T06:55:17 *** Ara <Ara!~Ara@user/ara> has quit IRC (*.net *.split)
952023-03-03T06:55:17 *** codo <codo!~codeautis@user/codeautist> has quit IRC (*.net *.split)
962023-03-03T06:55:18 *** baakeydow <baakeydow!~baake@2001:41d0:203:b12c::> has quit IRC (*.net *.split)
972023-03-03T06:55:18 *** sturles <sturles!~sturles@soria.uio.no> has quit IRC (*.net *.split)
982023-03-03T06:55:18 *** cornfeedhobo <cornfeedhobo!~cornfeedh@user/cornfeedhobo> has quit IRC (*.net *.split)
992023-03-03T06:55:18 *** roasbeef <roasbeef!~roasbeef@104.131.26.124> has quit IRC (*.net *.split)
1002023-03-03T06:55:18 *** warren <warren!~warren@fedora/wombat/warren> has quit IRC (*.net *.split)
1012023-03-03T06:55:18 *** Lightsword <Lightsword!~Lightswor@user/lightsword> has quit IRC (*.net *.split)
1022023-03-03T06:55:18 *** ajonas <ajonas!sid385278@id-385278.helmsley.irccloud.com> has quit IRC (*.net *.split)
1032023-03-03T06:55:18 *** ariard <ariard!~ariard@167.99.46.220> has quit IRC (*.net *.split)
1042023-03-03T06:55:18 *** furszy <furszy!~furszy@user/furszy> has quit IRC (*.net *.split)
1052023-03-03T06:55:18 *** yancy <yancy!~root@143.198.0.185> has quit IRC (*.net *.split)
1062023-03-03T06:55:18 *** jeremyrubin <jeremyrubin!~jeremyrub@ec2-44-199-24-18.compute-1.amazonaws.com> has quit IRC (*.net *.split)
1072023-03-03T06:56:53 *** jarthur <jarthur!~jarthur@user/jarthur> has joined #bitcoin-core-dev
1082023-03-03T06:56:53 *** dviola <dviola!~diego@179.235.30.21> has joined #bitcoin-core-dev
1092023-03-03T06:56:53 *** b_101 <b_101!~robert@193.37.254.131> has joined #bitcoin-core-dev
1102023-03-03T06:56:53 *** outfox <outfox!~outfox@user/outfox> has joined #bitcoin-core-dev
1112023-03-03T06:56:53 *** Ara <Ara!~Ara@user/ara> has joined #bitcoin-core-dev
1122023-03-03T06:56:53 *** codo <codo!~codeautis@user/codeautist> has joined #bitcoin-core-dev
1132023-03-03T06:56:53 *** baakeydow <baakeydow!~baake@2001:41d0:203:b12c::> has joined #bitcoin-core-dev
1142023-03-03T06:56:53 *** sturles <sturles!~sturles@soria.uio.no> has joined #bitcoin-core-dev
1152023-03-03T06:56:53 *** cornfeedhobo <cornfeedhobo!~cornfeedh@user/cornfeedhobo> has joined #bitcoin-core-dev
1162023-03-03T06:56:53 *** roasbeef <roasbeef!~roasbeef@104.131.26.124> has joined #bitcoin-core-dev
1172023-03-03T06:56:53 *** warren <warren!~warren@fedora/wombat/warren> has joined #bitcoin-core-dev
1182023-03-03T06:56:53 *** Lightsword <Lightsword!~Lightswor@user/lightsword> has joined #bitcoin-core-dev
1192023-03-03T06:56:53 *** ajonas <ajonas!sid385278@id-385278.helmsley.irccloud.com> has joined #bitcoin-core-dev
1202023-03-03T06:56:53 *** ariard <ariard!~ariard@167.99.46.220> has joined #bitcoin-core-dev
1212023-03-03T06:56:53 *** furszy <furszy!~furszy@user/furszy> has joined #bitcoin-core-dev
1222023-03-03T06:56:53 *** yancy <yancy!~root@143.198.0.185> has joined #bitcoin-core-dev
1232023-03-03T06:56:53 *** jeremyrubin <jeremyrubin!~jeremyrub@ec2-44-199-24-18.compute-1.amazonaws.com> has joined #bitcoin-core-dev
1242023-03-03T06:57:52 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1252023-03-03T07:02:08 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 252 seconds)
1262023-03-03T07:03:56 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1272023-03-03T07:08:17 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 246 seconds)
1282023-03-03T07:14:43 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1292023-03-03T07:16:48 *** jarthur <jarthur!~jarthur@user/jarthur> has quit IRC (Ping timeout: 248 seconds)
1302023-03-03T07:19:23 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 264 seconds)
1312023-03-03T07:19:25 *** jarthur <jarthur!~jarthur@user/jarthur> has joined #bitcoin-core-dev
1322023-03-03T07:20:47 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1332023-03-03T07:24:59 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
1342023-03-03T07:31:34 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1352023-03-03T07:35:28 *** dviola <dviola!~diego@179.235.30.21> has quit IRC (Ping timeout: 248 seconds)
1362023-03-03T07:36:11 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 265 seconds)
1372023-03-03T07:36:43 *** dviola <dviola!~diego@179.235.30.21> has joined #bitcoin-core-dev
1382023-03-03T07:42:53 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has joined #bitcoin-core-dev
1392023-03-03T07:47:23 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Ping timeout: 248 seconds)
1402023-03-03T07:53:46 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has joined #bitcoin-core-dev
1412023-03-03T07:58:24 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Ping timeout: 255 seconds)
1422023-03-03T07:59:59 *** goatpig_ <goatpig_!~goat@81-226-17-143-no256.tbcn.telia.com> has joined #bitcoin-core-dev
1432023-03-03T08:05:04 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1442023-03-03T08:07:13 *** martins <martins!~marti@adsl-178-39-110-172.adslplus.ch> has joined #bitcoin-core-dev
1452023-03-03T08:07:22 *** jeremyrubin <jeremyrubin!~jeremyrub@ec2-44-199-24-18.compute-1.amazonaws.com> has quit IRC (Quit: Ping timeout (120 seconds))
1462023-03-03T08:07:43 *** jeremyrubin <jeremyrubin!~jeremyrub@ec2-44-199-24-18.compute-1.amazonaws.com> has joined #bitcoin-core-dev
1472023-03-03T08:09:36 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
1482023-03-03T08:16:06 *** Guyver2 <Guyver2!~Guyver@77-174-98-73.fixed.kpn.net> has joined #bitcoin-core-dev
1492023-03-03T08:24:21 *** b_101_ <b_101_!~robert@193.37.254.131> has joined #bitcoin-core-dev
1502023-03-03T08:25:36 *** b_101 <b_101!~robert@193.37.254.131> has quit IRC (Ping timeout: 248 seconds)
1512023-03-03T08:27:04 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1522023-03-03T08:27:12 *** dviola <dviola!~diego@179.235.30.21> has left #bitcoin-core-dev
1532023-03-03T08:27:29 *** dviola <dviola!~diego@user/dviola> has joined #bitcoin-core-dev
1542023-03-03T08:31:28 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
1552023-03-03T08:37:45 *** martins <martins!~marti@adsl-178-39-110-172.adslplus.ch> has quit IRC (Read error: Connection reset by peer)
1562023-03-03T08:43:58 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1572023-03-03T08:48:35 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 260 seconds)
1582023-03-03T08:49:19 *** p2plife_ <p2plife_!~p2plife@vps-46773dd2.vps.ovh.net> has quit IRC (Quit: quit)
1592023-03-03T08:50:56 *** p2plife <p2plife!~p2plife@vps-46773dd2.vps.ovh.net> has joined #bitcoin-core-dev
1602023-03-03T08:54:45 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1612023-03-03T08:59:23 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
1622023-03-03T09:00:49 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1632023-03-03T09:04:39 *** Guyver2 <Guyver2!~Guyver@77-174-98-73.fixed.kpn.net> has left #bitcoin-core-dev (Closing Window)
1642023-03-03T09:05:15 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 260 seconds)
1652023-03-03T09:25:47 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1662023-03-03T09:30:15 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 265 seconds)
1672023-03-03T09:31:51 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1682023-03-03T09:36:47 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 264 seconds)
1692023-03-03T09:52:56 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has joined #bitcoin-core-dev
1702023-03-03T09:57:19 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Ping timeout: 248 seconds)
1712023-03-03T10:10:28 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1722023-03-03T10:15:12 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 265 seconds)
1732023-03-03T10:16:32 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1742023-03-03T10:21:00 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 265 seconds)
1752023-03-03T10:27:19 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1762023-03-03T10:32:03 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 260 seconds)
1772023-03-03T10:38:33 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1782023-03-03T10:43:23 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 264 seconds)
1792023-03-03T10:49:20 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1802023-03-03T10:53:41 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 246 seconds)
1812023-03-03T10:55:27 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1822023-03-03T10:59:44 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
1832023-03-03T11:06:15 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1842023-03-03T11:10:47 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 260 seconds)
1852023-03-03T11:27:54 *** jespada <jespada!~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net> has quit IRC (Remote host closed the connection)
1862023-03-03T11:28:35 *** jespada <jespada!~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net> has joined #bitcoin-core-dev
1872023-03-03T11:37:16 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1882023-03-03T11:41:51 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
1892023-03-03T11:48:37 *** Guest4 <Guest4!~Guest4@182.68.254.107> has joined #bitcoin-core-dev
1902023-03-03T11:56:37 *** Guest4 <Guest4!~Guest4@182.68.254.107> has quit IRC (Quit: Ping timeout (120 seconds))
1912023-03-03T11:56:48 *** Guest4 <Guest4!~Guest4@182.68.254.107> has joined #bitcoin-core-dev
1922023-03-03T11:57:34 *** Guest4 <Guest4!~Guest4@182.68.254.107> has quit IRC (Client Quit)
1932023-03-03T11:59:22 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1942023-03-03T12:03:55 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
1952023-03-03T12:10:09 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1962023-03-03T12:15:05 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 260 seconds)
1972023-03-03T12:16:12 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
1982023-03-03T13:42:58 *** jespada <jespada!~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net> has quit IRC (Quit: Textual IRC Client: www.textualapp.com)
1992023-03-03T13:53:54 *** scg <scg!~scg@host-45-231-170-41.broadbandcancun.mx> has joined #bitcoin-core-dev
2002023-03-03T14:04:32 *** scg <scg!~scg@host-45-231-170-41.broadbandcancun.mx> has quit IRC (Quit: Client closed)
2012023-03-03T14:04:52 *** scg <scg!~scg@host-45-231-170-41.broadbandcancun.mx> has joined #bitcoin-core-dev
2022023-03-03T14:16:58 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Remote host closed the connection)
2032023-03-03T14:17:20 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
2042023-03-03T14:24:40 <bitcoin-git> [bitcoin] fanquake pushed 4 commits to master: https://github.com/bitcoin/bitcoin/compare/a12b27a2a6da...3b88c8502534
2052023-03-03T14:24:40 <bitcoin-git> bitcoin/master 1d02e59 stickies-v: test: add cases to JSON parsing
2062023-03-03T14:24:40 <bitcoin-git> bitcoin/master 7727603 stickies-v: refactor: reduce unnecessary complexity in ParseNonRFCJSONValue
2072023-03-03T14:24:41 <bitcoin-git> bitcoin/master 545ff92 stickies-v: refactor: use string_view for RPC named argument values
2082023-03-03T14:24:41 <bitcoin-git> [bitcoin] fanquake merged pull request #26612: refactor: RPC: pass named argument value as string_view (master...rpc-convert-string-view) https://github.com/bitcoin/bitcoin/pull/26612
2092023-03-03T14:37:11 *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Quit: Leaving)
2102023-03-03T14:38:19 *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
2112023-03-03T14:47:25 *** instagibbs <instagibbs!~instagibb@pool-100-15-126-231.washdc.fios.verizon.net> has quit IRC (Quit: Ping timeout (120 seconds))
2122023-03-03T14:47:45 *** instagibbs <instagibbs!~instagibb@pool-100-15-126-231.washdc.fios.verizon.net> has joined #bitcoin-core-dev
2132023-03-03T14:51:00 *** Guyver2 <Guyver2!~Guyver@77-174-98-73.fixed.kpn.net> has joined #bitcoin-core-dev
2142023-03-03T14:52:24 *** Guyver2 <Guyver2!~Guyver@77-174-98-73.fixed.kpn.net> has left #bitcoin-core-dev
2152023-03-03T14:54:55 *** instagibbs <instagibbs!~instagibb@pool-100-15-126-231.washdc.fios.verizon.net> has quit IRC (Read error: Connection reset by peer)
2162023-03-03T15:07:55 *** robobub <robobub!uid248673@id-248673.uxbridge.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)
2172023-03-03T15:09:41 *** bugs_ <bugs_!~bugs@user/bugs/x-5128603> has joined #bitcoin-core-dev
2182023-03-03T15:13:30 <bitcoin-git> [bitcoin] furszy opened pull request #27195: bumpfee: allow send coins back to yourself (master...2022_bumpfee_send_coins_back_to_yourself) https://github.com/bitcoin/bitcoin/pull/27195
2192023-03-03T16:03:02 *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Ping timeout: 255 seconds)
2202023-03-03T16:07:28 *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
2212023-03-03T16:17:12 *** instagibbs <instagibbs!~instagibb@pool-100-15-126-231.washdc.fios.verizon.net> has joined #bitcoin-core-dev
2222023-03-03T16:20:38 *** hg <hg!~halosghos@user/halosghost> has joined #bitcoin-core-dev
2232023-03-03T16:40:34 *** Guest54 <Guest54!~Guest54@128.127.150.108> has joined #bitcoin-core-dev
2242023-03-03T16:42:53 *** Guest54 <Guest54!~Guest54@128.127.150.108> has quit IRC (Client Quit)
2252023-03-03T17:00:15 *** mudsip <mudsip!~mudsip@user/mudsip> has joined #bitcoin-core-dev
2262023-03-03T17:01:21 *** mudsip <mudsip!~mudsip@user/mudsip> has quit IRC (Client Quit)
2272023-03-03T17:04:32 *** Guest99 <Guest99!~Guest99@2001:818:dc22:1700:b8c5:4c42:b69e:5a2a> has joined #bitcoin-core-dev
2282023-03-03T17:04:37 *** Guest99 <Guest99!~Guest99@2001:818:dc22:1700:b8c5:4c42:b69e:5a2a> has quit IRC (Client Quit)
2292023-03-03T17:29:29 *** zeropoint <zeropoint!~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net> has joined #bitcoin-core-dev
2302023-03-03T17:36:33 *** instagibbs <instagibbs!~instagibb@pool-100-15-126-231.washdc.fios.verizon.net> has quit IRC (Quit: The Lounge - https://thelounge.chat)
2312023-03-03T17:37:16 *** instagibbs <instagibbs!~instagibb@pool-100-15-126-231.washdc.fios.verizon.net> has joined #bitcoin-core-dev
2322023-03-03T17:40:41 *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Ping timeout: 255 seconds)
2332023-03-03T17:42:27 *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
2342023-03-03T18:00:35 *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Remote host closed the connection)
2352023-03-03T18:00:56 *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
2362023-03-03T18:09:28 *** puchka <puchka!~puchka@185.203.122.224> has quit IRC (Ping timeout: 252 seconds)
2372023-03-03T18:21:16 *** cm <cm!~chaz@user/cm> has quit IRC (Quit: Bye.)
2382023-03-03T18:27:06 *** cm <cm!~chaz@user/cm> has joined #bitcoin-core-dev
2392023-03-03T18:31:08 *** emzy <emzy!~quassel@user/emzy> has quit IRC (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.)
2402023-03-03T18:31:32 *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has quit IRC (Ping timeout: 255 seconds)
2412023-03-03T18:33:01 *** emzy <emzy!~quassel@user/emzy> has joined #bitcoin-core-dev
2422023-03-03T18:33:34 *** qxs <qxs!~qxs@gateway/tor-sasl/qxs> has joined #bitcoin-core-dev
2432023-03-03T18:39:43 *** sat-naka <sat-naka!~sat-naka@096-038-055-026.biz.spectrum.com> has joined #bitcoin-core-dev
2442023-03-03T18:48:34 *** sat-naka <sat-naka!~sat-naka@096-038-055-026.biz.spectrum.com> has quit IRC (Quit: Client closed)
2452023-03-03T18:54:46 *** zeropoint <zeropoint!~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net> has quit IRC (Quit: leaving)
2462023-03-03T19:24:19 *** SpellChecker_ <SpellChecker_!~SpellChec@user/SpellChecker> has joined #bitcoin-core-dev
2472023-03-03T19:31:23 *** SpellChecker <SpellChecker!~SpellChec@user/SpellChecker> has quit IRC (Ping timeout: 255 seconds)
2482023-03-03T19:54:42 *** ___nick___ <___nick___!~quassel@2a00:23c6:8d9f:f501:f102:1695:909a:4b0a> has joined #bitcoin-core-dev
2492023-03-03T20:02:46 *** sipsorcery_ <sipsorcery_!~sipsorcer@213.233.155.173> has joined #bitcoin-core-dev
2502023-03-03T20:07:53 *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Quit: Leaving)
2512023-03-03T20:08:38 *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
2522023-03-03T20:10:09 *** Guest49 <Guest49!~Guest49@52.sub-75-221-188.myvzw.com> has joined #bitcoin-core-dev
2532023-03-03T20:21:06 *** Guest49 <Guest49!~Guest49@52.sub-75-221-188.myvzw.com> has quit IRC (Quit: Client closed)
2542023-03-03T20:38:17 *** guilauzier <guilauzier!~guilauzie@adsl-62-167-38-84.adslplus.ch> has joined #bitcoin-core-dev
2552023-03-03T20:45:07 *** guilauzier <guilauzier!~guilauzie@adsl-62-167-38-84.adslplus.ch> has quit IRC (Quit: Ping timeout (120 seconds))
2562023-03-03T20:53:17 *** Talkless <Talkless!~Talkless@mail.dargis.net> has joined #bitcoin-core-dev
2572023-03-03T21:03:48 *** ___nick___ <___nick___!~quassel@2a00:23c6:8d9f:f501:f102:1695:909a:4b0a> has quit IRC (Quit: No Ping reply in 180 seconds.)
2582023-03-03T21:05:02 *** ___nick___ <___nick___!~quassel@2a00:23c6:8d9f:f501:1705:eeb6:5fdb:a6bf> has joined #bitcoin-core-dev
2592023-03-03T21:13:19 *** ___nick___ <___nick___!~quassel@2a00:23c6:8d9f:f501:1705:eeb6:5fdb:a6bf> has quit IRC (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.)
2602023-03-03T21:13:39 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Remote host closed the connection)
2612023-03-03T21:14:05 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
2622023-03-03T21:15:27 *** ___nick___ <___nick___!~quassel@2a00:23c6:8d9f:f501:1705:eeb6:5fdb:a6bf> has joined #bitcoin-core-dev
2632023-03-03T21:17:10 *** ___nick___ <___nick___!~quassel@2a00:23c6:8d9f:f501:1705:eeb6:5fdb:a6bf> has quit IRC (Client Quit)
2642023-03-03T21:18:24 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
2652023-03-03T21:18:53 *** zeropoint <zeropoint!~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net> has joined #bitcoin-core-dev
2662023-03-03T21:19:24 *** ___nick___ <___nick___!~quassel@2a00:23c6:8d9f:f501:1705:eeb6:5fdb:a6bf> has joined #bitcoin-core-dev
2672023-03-03T21:31:49 *** zeropoint <zeropoint!~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net> has quit IRC (Quit: leaving)
2682023-03-03T21:47:45 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
2692023-03-03T21:52:23 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 264 seconds)
2702023-03-03T21:53:25 <bitcoin-git> [bitcoin] hernanmarino opened pull request #27197: Fixed typos in comments to make linter happy (master...fix-typos-linter) https://github.com/bitcoin/bitcoin/pull/27197
2712023-03-03T21:58:31 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
2722023-03-03T22:02:51 *** Talkless <Talkless!~Talkless@mail.dargis.net> has quit IRC (Quit: Konversation terminated!)
2732023-03-03T22:03:05 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 260 seconds)
2742023-03-03T22:09:23 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has joined #bitcoin-core-dev
2752023-03-03T22:14:45 *** brunoerg <brunoerg!~brunoerg@187.183.43.117> has quit IRC (Ping timeout: 260 seconds)
2762023-03-03T22:20:51 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
2772023-03-03T22:25:04 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
2782023-03-03T22:34:51 *** neromm[m] <neromm[m]!~nerommmon@2001:470:69fc:105::1:75a5> has joined #bitcoin-core-dev
2792023-03-03T22:38:56 *** jon_atack <jon_atack!~jonatack@user/jonatack> has quit IRC (Ping timeout: 246 seconds)
2802023-03-03T22:46:39 *** bugs_ <bugs_!~bugs@user/bugs/x-5128603> has quit IRC (Quit: Leaving)
2812023-03-03T22:54:30 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
2822023-03-03T22:59:12 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
2832023-03-03T23:05:21 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
2842023-03-03T23:05:28 *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has quit IRC (Remote host closed the connection)
2852023-03-03T23:05:53 *** ghost43 <ghost43!~ghost43@gateway/tor-sasl/ghost43> has joined #bitcoin-core-dev
2862023-03-03T23:10:00 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 255 seconds)
2872023-03-03T23:11:25 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
2882023-03-03T23:12:21 *** nanotube <nanotube!~nanotube@user/nanotube> has quit IRC (Ping timeout: 255 seconds)
2892023-03-03T23:15:26 *** hg <hg!~halosghos@user/halosghost> has quit IRC (Quit: WeeChat 3.8)
2902023-03-03T23:15:55 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 248 seconds)
2912023-03-03T23:19:33 *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has joined #bitcoin-core-dev
2922023-03-03T23:39:21 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has joined #bitcoin-core-dev
2932023-03-03T23:43:59 *** brunoerg <brunoerg!~brunoerg@2804:14c:3bfb:8a:61ac:f6f:34ef:7a91> has quit IRC (Ping timeout: 264 seconds)
2942023-03-03T23:48:58 *** amishbtc_ <amishbtc_!~amishbtc@cpe-74-72-75-120.nyc.res.rr.com> has quit IRC (Quit: Leaving)
2952023-03-03T23:55:21 *** amishbtc <amishbtc!~amishbtc@cpe-74-72-75-120.nyc.res.rr.com> has joined #bitcoin-core-dev
2962023-03-03T23:56:47 *** scg <scg!~scg@host-45-231-170-41.broadbandcancun.mx> has quit IRC (Quit: Client closed)