12020-11-29T00:05:34 *** andrewtoth <andrewtoth!~andrewtot@gateway/tor-sasl/andrewtoth> has quit IRC (Remote host closed the connection)
22020-11-29T00:05:59 *** andrewtoth <andrewtoth!~andrewtot@gateway/tor-sasl/andrewtoth> has joined #bitcoin-core-dev
32020-11-29T00:43:29 *** Victorsueca <Victorsueca!~Victorsue@unaffiliated/victorsueca> has joined #bitcoin-core-dev
42020-11-29T01:03:15 *** miketwenty1 <miketwenty1!~miketwent@ip24-136-61-186.ga.at.cox.net> has joined #bitcoin-core-dev
52020-11-29T01:32:37 *** promag___ <promag___!~promag@188.250.84.129> has quit IRC (Ping timeout: 264 seconds)
62020-11-29T01:35:24 *** vasild_ <vasild_!~vd@gateway/tor-sasl/vasild> has joined #bitcoin-core-dev
72020-11-29T01:37:28 *** mol_ <mol_!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
82020-11-29T01:38:23 *** vasild <vasild!~vd@gateway/tor-sasl/vasild> has quit IRC (Ping timeout: 240 seconds)
92020-11-29T01:38:24 *** vasild_ is now known as vasild
102020-11-29T01:40:16 *** mol <mol!~mol@unaffiliated/molly> has quit IRC (Ping timeout: 240 seconds)
112020-11-29T01:51:04 *** Victorsueca <Victorsueca!~Victorsue@unaffiliated/victorsueca> has quit IRC (Ping timeout: 260 seconds)
122020-11-29T01:52:12 *** mickey86 <mickey86!68c2dcef@104.194.220.239> has joined #bitcoin-core-dev
132020-11-29T02:02:27 *** Mlpearc <Mlpearc!~Mlpearc@178.162.212.214> has quit IRC (Remote host closed the connection)
142020-11-29T02:04:02 *** miketwenty1 <miketwenty1!~miketwent@ip24-136-61-186.ga.at.cox.net> has quit IRC (Ping timeout: 256 seconds)
152020-11-29T02:04:05 *** Eagle[TM] <Eagle[TM]!~EagleTM@unaffiliated/eagletm> has joined #bitcoin-core-dev
162020-11-29T02:06:48 *** EagleTM <EagleTM!~EagleTM@unaffiliated/eagletm> has quit IRC (Ping timeout: 272 seconds)
172020-11-29T02:18:08 *** Victorsueca <Victorsueca!~Victorsue@unaffiliated/victorsueca> has joined #bitcoin-core-dev
182020-11-29T02:18:26 *** mickey86 <mickey86!68c2dcef@104.194.220.239> has quit IRC (Remote host closed the connection)
192020-11-29T02:20:27 *** Zao_ <Zao_!~Zao_@185.204.1.185> has joined #bitcoin-core-dev
202020-11-29T02:28:25 *** Victorsueca <Victorsueca!~Victorsue@unaffiliated/victorsueca> has quit IRC (Ping timeout: 264 seconds)
212020-11-29T02:54:13 *** Victorsueca <Victorsueca!~Victorsue@unaffiliated/victorsueca> has joined #bitcoin-core-dev
222020-11-29T03:03:24 *** Victorsueca <Victorsueca!~Victorsue@unaffiliated/victorsueca> has quit IRC (Ping timeout: 265 seconds)
232020-11-29T03:04:49 *** joelklabo <joelklabo!~textual@157-131-101-185.fiber.dynamic.sonic.net> has joined #bitcoin-core-dev
242020-11-29T03:28:54 *** Victorsueca <Victorsueca!~Victorsue@unaffiliated/victorsueca> has joined #bitcoin-core-dev
252020-11-29T03:31:02 *** rh0nj <rh0nj!~rh0nj@88.99.167.175> has quit IRC (Remote host closed the connection)
262020-11-29T03:32:08 *** rh0nj <rh0nj!~rh0nj@88.99.167.175> has joined #bitcoin-core-dev
272020-11-29T03:47:42 *** jesseposner <jesseposner!~jp@2601:643:8980:bfd2:29df:a2cb:6f55:8d6d> has quit IRC (Ping timeout: 260 seconds)
282020-11-29T03:48:13 *** Victorsueca <Victorsueca!~Victorsue@unaffiliated/victorsueca> has quit IRC (Ping timeout: 264 seconds)
292020-11-29T03:50:16 *** mol_ <mol_!~mol@unaffiliated/molly> has quit IRC (Read error: Connection reset by peer)
302020-11-29T03:50:36 *** mol <mol!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
312020-11-29T03:55:03 *** reallll <reallll!~belcher@unaffiliated/belcher> has joined #bitcoin-core-dev
322020-11-29T03:57:36 *** belcher <belcher!~belcher@unaffiliated/belcher> has quit IRC (Ping timeout: 240 seconds)
332020-11-29T04:06:18 *** promag <promag!~promag@188.250.84.129> has joined #bitcoin-core-dev
342020-11-29T04:13:14 *** promag <promag!~promag@188.250.84.129> has quit IRC (Ping timeout: 256 seconds)
352020-11-29T04:16:14 *** eugene-ff <eugene-ff!~eugene_ff@2604:2000:1383:472b:d1b8:1c24:4de2:e43c> has quit IRC (Ping timeout: 264 seconds)
362020-11-29T04:29:40 <andytoshi> i also tend to think of passing const references as a way to be assured that the variable won't change throughout the body of the function. somehow i tend to forget that you can make normal objects be const too
372020-11-29T04:30:10 <andytoshi> i think in general it's non-idiomatic for some reason to make local variables const, and this sometimes leads to people overusing references just so they can get constness
382020-11-29T04:31:39 <sipa> a const reference actually doesn't guarantee it can't change throughout the body of the function; it only means it can't be modified through that reference/variable/pointer
392020-11-29T04:32:02 <andytoshi> i also forget this, which is a much more dangerous thing to forget
402020-11-29T04:32:14 <sipa> it also makes const way less useful then it could be
412020-11-29T04:32:21 <sipa> both for programmers and for the compiler
422020-11-29T04:32:42 <sipa> as the compiler can't assume a const reference can't change
432020-11-29T04:32:56 <sipa> but it can assume that a const variable itself won't change - that's actually UB
442020-11-29T04:33:45 <andytoshi> heh, that's a good observation .. makes it all the more strange that people tend not to const local variables
452020-11-29T04:34:53 <sipa> if you have a local variable and no reference to it is passed to another function, it doesn't matter for performance reasons really, the compiler can figure out on its own that nothing changes it
462020-11-29T04:36:03 <sipa> "it only means it can't be modified through that reference/variable/pointer" <- actually even that is wrong
472020-11-29T04:36:42 <sipa> iirc the rule is that as long as any non-const reference anywhere to an object exists, it can be modified (including by casting the constness away from a const reference to it)
482020-11-29T04:37:13 <sipa> which in practice means that only actually const objects can be assumed to not change
492020-11-29T04:43:28 *** promag <promag!~promag@188.250.84.129> has joined #bitcoin-core-dev
502020-11-29T04:43:29 *** promag <promag!~promag@188.250.84.129> has quit IRC (Read error: Connection reset by peer)
512020-11-29T04:45:46 *** miketwenty1 <miketwenty1!~miketwent@ec2-52-207-61-44.compute-1.amazonaws.com> has joined #bitcoin-core-dev
522020-11-29T05:05:27 *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Remote host closed the connection)
532020-11-29T05:06:01 *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
542020-11-29T05:13:52 *** reallll <reallll!~belcher@unaffiliated/belcher> has quit IRC (Ping timeout: 256 seconds)
552020-11-29T05:14:21 *** belcher <belcher!~belcher@unaffiliated/belcher> has joined #bitcoin-core-dev
562020-11-29T05:17:27 *** Zao_ <Zao_!~Zao_@185.204.1.185> has quit IRC (Remote host closed the connection)
572020-11-29T05:30:54 *** Mlpearc <Mlpearc!~Mlpearc@84.39.117.57> has joined #bitcoin-core-dev
582020-11-29T05:42:30 *** miketwenty1 <miketwenty1!~miketwent@ec2-52-207-61-44.compute-1.amazonaws.com> has quit IRC (Remote host closed the connection)
592020-11-29T05:43:06 *** miketwenty1 <miketwenty1!~miketwent@ip24-136-61-186.ga.at.cox.net> has joined #bitcoin-core-dev
602020-11-29T05:47:54 *** miketwenty1 <miketwenty1!~miketwent@ip24-136-61-186.ga.at.cox.net> has quit IRC (Ping timeout: 260 seconds)
612020-11-29T05:55:46 *** miketwenty1 <miketwenty1!~miketwent@ec2-35-172-206-57.compute-1.amazonaws.com> has joined #bitcoin-core-dev
622020-11-29T06:12:10 *** yanmaani1 <yanmaani1!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
632020-11-29T06:15:03 *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Ping timeout: 240 seconds)
642020-11-29T06:24:02 *** az0re <az0re!~az0re@gateway/tor-sasl/az0re> has quit IRC (Remote host closed the connection)
652020-11-29T06:28:54 *** Livestradamus <Livestradamus!~quassel@unaffiliated/livestradamus> has quit IRC (Quit: I'm out.)
662020-11-29T06:29:02 *** Livestradamus <Livestradamus!~quassel@unaffiliated/livestradamus> has joined #bitcoin-core-dev
672020-11-29T06:36:30 *** miketwenty1 <miketwenty1!~miketwent@ec2-35-172-206-57.compute-1.amazonaws.com> has quit IRC (Remote host closed the connection)
682020-11-29T06:37:05 *** miketwenty1 <miketwenty1!~miketwent@ip24-136-61-186.ga.at.cox.net> has joined #bitcoin-core-dev
692020-11-29T06:41:34 *** miketwenty1 <miketwenty1!~miketwent@ip24-136-61-186.ga.at.cox.net> has quit IRC (Ping timeout: 260 seconds)
702020-11-29T06:52:50 *** az0re <az0re!~az0re@gateway/tor-sasl/az0re> has joined #bitcoin-core-dev
712020-11-29T07:03:25 *** joelklabo <joelklabo!~textual@157-131-101-185.fiber.dynamic.sonic.net> has quit IRC (Quit: My iMac has gone to sleep. ZZZzzzâ¦)
722020-11-29T07:17:37 *** mol <mol!~mol@unaffiliated/molly> has quit IRC (Ping timeout: 264 seconds)
732020-11-29T07:35:50 *** ghost43_ <ghost43_!~daer@gateway/tor-sasl/daer> has joined #bitcoin-core-dev
742020-11-29T07:36:03 *** ghost43 <ghost43!~daer@gateway/tor-sasl/daer> has quit IRC (Ping timeout: 240 seconds)
752020-11-29T07:57:37 *** miketwenty1 <miketwenty1!~miketwent@ip24-136-61-186.ga.at.cox.net> has joined #bitcoin-core-dev
762020-11-29T08:02:10 *** miketwenty1 <miketwenty1!~miketwent@ip24-136-61-186.ga.at.cox.net> has quit IRC (Ping timeout: 256 seconds)
772020-11-29T08:03:01 *** McStone <McStone!~CES@pub151248194093.dh-hfc.datazug.ch> has quit IRC (Quit: Leaving)
782020-11-29T08:17:50 *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
792020-11-29T08:17:50 <bitcoin-git> [gui] RandyMcMillan opened pull request #140: about-view: clean up - Bitcoin Core logo (master...about) https://github.com/bitcoin-core/gui/pull/140
802020-11-29T08:17:51 *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
812020-11-29T08:58:46 *** Guyver2 <Guyver2!Guyver@guyver2.xs4all.nl> has joined #bitcoin-core-dev
822020-11-29T09:03:37 *** shesek <shesek!~shesek@unaffiliated/shesek> has joined #bitcoin-core-dev
832020-11-29T09:09:40 *** promag <promag!~promag@188.250.84.129> has joined #bitcoin-core-dev
842020-11-29T09:09:56 *** jeremyrubin <jeremyrubin!~jr@c-73-15-215-148.hsd1.ca.comcast.net> has quit IRC (Ping timeout: 240 seconds)
852020-11-29T09:21:52 *** da39a3ee5e6b4b0d <da39a3ee5e6b4b0d!~da39a3ee5@2403:6200:8876:9156:94db:6381:b8e1:921c> has joined #bitcoin-core-dev
862020-11-29T09:36:16 *** mol <mol!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
872020-11-29T09:48:12 *** Pavlenex <Pavlenex!~Thunderbi@178.220.103.52> has joined #bitcoin-core-dev
882020-11-29T09:51:53 *** promag_ <promag_!~promag@188.250.84.129> has joined #bitcoin-core-dev
892020-11-29T09:53:48 *** Talkless <Talkless!~Talkless@mail.dargis.net> has joined #bitcoin-core-dev
902020-11-29T09:54:31 *** Talkless <Talkless!~Talkless@mail.dargis.net> has quit IRC (Remote host closed the connection)
912020-11-29T09:56:51 *** Talkless <Talkless!~Talkless@mail.dargis.net> has joined #bitcoin-core-dev
922020-11-29T10:01:00 *** mol <mol!~mol@unaffiliated/molly> has quit IRC (Ping timeout: 265 seconds)
932020-11-29T10:38:03 *** promag_ <promag_!~promag@188.250.84.129> has quit IRC (Remote host closed the connection)
942020-11-29T11:03:04 *** da39a3ee5e6b4b0d <da39a3ee5e6b4b0d!~da39a3ee5@2403:6200:8876:9156:94db:6381:b8e1:921c> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzzâ¦)
952020-11-29T11:09:17 *** promag_ <promag_!~promag@188.250.84.129> has joined #bitcoin-core-dev
962020-11-29T11:10:18 *** Pavlenex <Pavlenex!~Thunderbi@178.220.103.52> has quit IRC (Quit: Pavlenex)
972020-11-29T11:10:30 *** promag_ <promag_!~promag@188.250.84.129> has quit IRC (Remote host closed the connection)
982020-11-29T11:10:43 *** promag_ <promag_!~promag@188.250.84.129> has joined #bitcoin-core-dev
992020-11-29T11:10:57 *** Pavlenex <Pavlenex!~Thunderbi@178.220.103.52> has joined #bitcoin-core-dev
1002020-11-29T11:12:04 *** sr_gi <sr_gi!~sr_gi@80.174.218.168.dyn.user.ono.com> has quit IRC (Read error: Connection reset by peer)
1012020-11-29T11:12:46 *** sr_gi <sr_gi!~sr_gi@80.174.218.168.dyn.user.ono.com> has joined #bitcoin-core-dev
1022020-11-29T11:17:15 *** Pavlenex <Pavlenex!~Thunderbi@178.220.103.52> has quit IRC (Quit: Pavlenex)
1032020-11-29T11:17:36 *** Pavlenex <Pavlenex!~Thunderbi@178.220.103.52> has joined #bitcoin-core-dev
1042020-11-29T11:18:39 *** Arnaldo89Ankundi <Arnaldo89Ankundi!~Arnaldo89@static.57.1.216.95.clients.your-server.de> has joined #bitcoin-core-dev
1052020-11-29T11:19:35 *** promag_ <promag_!~promag@188.250.84.129> has quit IRC (Remote host closed the connection)
1062020-11-29T11:26:06 *** promag_ <promag_!~promag@188.250.84.129> has joined #bitcoin-core-dev
1072020-11-29T11:26:15 *** AaronvanW <AaronvanW!~AaronvanW@unaffiliated/aaronvanw> has quit IRC (Remote host closed the connection)
1082020-11-29T11:26:36 *** AaronvanW <AaronvanW!~AaronvanW@unaffiliated/aaronvanw> has joined #bitcoin-core-dev
1092020-11-29T11:31:06 *** Arnaldo89Ankundi <Arnaldo89Ankundi!~Arnaldo89@static.57.1.216.95.clients.your-server.de> has quit IRC (Ping timeout: 272 seconds)
1102020-11-29T11:39:55 *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
1112020-11-29T11:39:55 <bitcoin-git> [bitcoin] hebasto opened pull request #20527: build: Do not ignore Homebrew's SQLite on macOS (master...201129-sqlite) https://github.com/bitcoin/bitcoin/pull/20527
1122020-11-29T11:39:56 *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
1132020-11-29T11:41:45 *** da39a3ee5e6b4b0d <da39a3ee5e6b4b0d!~da39a3ee5@2403:6200:8876:9156:94db:6381:b8e1:921c> has joined #bitcoin-core-dev
1142020-11-29T11:57:32 *** Mlpearc <Mlpearc!~Mlpearc@84.39.117.57> has quit IRC (Remote host closed the connection)
1152020-11-29T11:59:22 *** andyrtr1 <andyrtr1!~andyrtr@195.140.213.38> has joined #bitcoin-core-dev
1162020-11-29T12:05:31 *** mol <mol!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
1172020-11-29T12:18:11 *** promag_ <promag_!~promag@188.250.84.129> has quit IRC (Remote host closed the connection)
1182020-11-29T13:15:48 *** andyrtr1 <andyrtr1!~andyrtr@195.140.213.38> has quit IRC (Remote host closed the connection)
1192020-11-29T13:21:56 *** Emcy <Emcy!~Emcy@unaffiliated/emcy> has quit IRC (Read error: Connection reset by peer)
1202020-11-29T13:26:02 *** da39a3ee5e6b4b0d <da39a3ee5e6b4b0d!~da39a3ee5@2403:6200:8876:9156:94db:6381:b8e1:921c> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzzâ¦)
1212020-11-29T13:27:30 *** Emcy <Emcy!~Emcy@unaffiliated/emcy> has joined #bitcoin-core-dev
1222020-11-29T13:35:19 *** vasild_ <vasild_!~vd@gateway/tor-sasl/vasild> has joined #bitcoin-core-dev
1232020-11-29T13:38:43 *** vasild <vasild!~vd@gateway/tor-sasl/vasild> has quit IRC (Ping timeout: 240 seconds)
1242020-11-29T13:38:45 *** vasild_ is now known as vasild
1252020-11-29T13:55:47 *** sovereigncoffee <sovereigncoffee!6c575e8c@108-87-94-140.lightspeed.hstntx.sbcglobal.net> has joined #bitcoin-core-dev
1262020-11-29T13:59:53 *** mol_ <mol_!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
1272020-11-29T14:01:46 *** mol <mol!~mol@unaffiliated/molly> has quit IRC (Ping timeout: 246 seconds)
1282020-11-29T14:09:35 *** xi1 <xi1!~xi@178.239.168.171> has joined #bitcoin-core-dev
1292020-11-29T14:25:29 *** shesek <shesek!~shesek@unaffiliated/shesek> has quit IRC (Remote host closed the connection)
1302020-11-29T14:35:05 *** sovereigncoffee <sovereigncoffee!6c575e8c@108-87-94-140.lightspeed.hstntx.sbcglobal.net> has quit IRC (Ping timeout: 245 seconds)
1312020-11-29T14:43:30 *** da39a3ee5e6b4b0d <da39a3ee5e6b4b0d!~da39a3ee5@171.5.161.165> has joined #bitcoin-core-dev
1322020-11-29T15:04:20 *** da39a3ee5e6b4b0d <da39a3ee5e6b4b0d!~da39a3ee5@171.5.161.165> has quit IRC (Quit: My MacBook has gone to sleep. ZZZzzzâ¦)
1332020-11-29T15:05:20 *** da39a3ee5e6b4b0d <da39a3ee5e6b4b0d!~da39a3ee5@171.5.161.165> has joined #bitcoin-core-dev
1342020-11-29T15:06:06 *** da39a3ee5e6b4b0d <da39a3ee5e6b4b0d!~da39a3ee5@171.5.161.165> has quit IRC (Client Quit)
1352020-11-29T15:06:17 *** mol <mol!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
1362020-11-29T15:08:56 *** molz_ <molz_!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
1372020-11-29T15:08:58 *** mol_ <mol_!~mol@unaffiliated/molly> has quit IRC (Ping timeout: 246 seconds)
1382020-11-29T15:12:08 *** mol <mol!~mol@unaffiliated/molly> has quit IRC (Ping timeout: 272 seconds)
1392020-11-29T15:13:25 *** mol_ <mol_!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
1402020-11-29T15:16:48 *** molz_ <molz_!~mol@unaffiliated/molly> has quit IRC (Ping timeout: 256 seconds)
1412020-11-29T15:28:55 *** molz_ <molz_!~mol@unaffiliated/molly> has joined #bitcoin-core-dev
1422020-11-29T15:31:57 *** mol_ <mol_!~mol@unaffiliated/molly> has quit IRC (Ping timeout: 256 seconds)
1432020-11-29T15:35:34 *** joelklabo <joelklabo!~textual@157-131-101-185.fiber.dynamic.sonic.net> has joined #bitcoin-core-dev
1442020-11-29T16:01:08 *** jeremyrubin <jeremyrubin!~jr@c-73-15-215-148.hsd1.ca.comcast.net> has joined #bitcoin-core-dev
1452020-11-29T16:32:01 *** kristapsk <kristapsk!~KK@gateway/tor-sasl/kristapsk> has joined #bitcoin-core-dev
1462020-11-29T16:57:38 *** joelklabo <joelklabo!~textual@157-131-101-185.fiber.dynamic.sonic.net> has quit IRC (Quit: My iMac has gone to sleep. ZZZzzzâ¦)
1472020-11-29T17:16:41 <luke-jr> how do I restart Cirrus CI jobs? or did we lose that leaving Travis?
1482020-11-29T17:36:18 *** AaronvanW <AaronvanW!~AaronvanW@unaffiliated/aaronvanw> has quit IRC ()
1492020-11-29T17:59:09 *** eugene-ff <eugene-ff!~eugene_ff@2604:2000:1383:472b:74fb:214:d521:e2ea> has joined #bitcoin-core-dev
1502020-11-29T18:02:55 <jonatack> luke-jr: yesterday i could restart a cirrus task. link?
1512020-11-29T18:04:13 <luke-jr> https://github.com/bitcoin-core/gui/pull/90#issuecomment-735360234
1522020-11-29T18:04:31 <luke-jr> I guess https://cirrus-ci.com/task/4671939845292032
1532020-11-29T18:04:41 <luke-jr> maybe a problem because it's on the GUI repo
1542020-11-29T18:05:51 <jonatack> that may be it. i don't see the re-run button either.
1552020-11-29T18:08:28 <jonatack> when they time out, istm they're auto-rescheduled ("Scheduled in 01:11"), not sure
1562020-11-29T18:24:12 *** promag_ <promag_!~promag@188.250.84.129> has joined #bitcoin-core-dev
1572020-11-29T18:33:23 *** kristapsk <kristapsk!~KK@gateway/tor-sasl/kristapsk> has quit IRC (Ping timeout: 240 seconds)
1582020-11-29T18:34:03 *** k3tan <k3tan!~pi@gateway/tor-sasl/k3tan> has quit IRC (Ping timeout: 240 seconds)
1592020-11-29T18:34:26 *** k3tan <k3tan!~pi@gateway/tor-sasl/k3tan> has joined #bitcoin-core-dev
1602020-11-29T18:37:09 *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
1612020-11-29T18:37:09 <bitcoin-git> [bitcoin] fjahr opened pull request #20530: lint, refactor: Update cppcheck linter to c++17 and improve explicit usage (master...cppcheck17) https://github.com/bitcoin/bitcoin/pull/20530
1622020-11-29T18:37:10 *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
1632020-11-29T18:41:17 *** joelklabo <joelklabo!~textual@157-131-101-185.fiber.dynamic.sonic.net> has joined #bitcoin-core-dev
1642020-11-29T18:46:49 *** glozow <glozow!uid453516@gateway/web/irccloud.com/x-ipsfkttnncmlxwsi> has quit IRC (Quit: Connection closed for inactivity)
1652020-11-29T18:48:13 *** promag_ <promag_!~promag@188.250.84.129> has quit IRC (Remote host closed the connection)
1662020-11-29T18:57:54 *** Provostro <Provostro!~Pvo@5.180.220.77> has joined #bitcoin-core-dev
1672020-11-29T18:58:25 <Provostro> Hi, sorry to bother, I asked in #bitcoin but no answer. Can you please tell me how to use the socks5 proxy auth from bitcoind with -proxy
1682020-11-29T18:58:43 <Provostro> 2020-11-29T18:39:46Z Error: Invalid -proxy address or hostname: 'test:test@192.168.1.1:1080'
1692020-11-29T18:58:59 <Provostro> netbase.cpp: LogPrint(BCLog::PROXY, "SOCKS5 sending proxy authentication %s:%s\n", auth->username, auth->password);
1702020-11-29T18:59:53 <Provostro> like how do you specify the credentials for -proxy from the command line? im not smart enough to figure it out.
1712020-11-29T19:06:55 <sipa> i don't think you can
1722020-11-29T19:07:23 <Provostro> it seems like its in there, so kept trying and thought i was crazy
1732020-11-29T19:08:48 <sipa> there is -proxyrandomize
1742020-11-29T19:09:10 <sipa> which uses a new username for every stream, which tor uses for stream isolation
1752020-11-29T19:10:12 <Provostro> so there's no way to still use an authenticated socks5 proxy? im not a programmer dude, but it looks like its like 99% implemented in the source?
1762020-11-29T19:11:05 <sipa> yes, i think there just never was a use for it
1772020-11-29T19:11:17 <sipa> i think almost all uses of the -proxy function are for tor
1782020-11-29T19:11:52 <Provostro> thanks for the info, i probably would have kept trying for at least another 4 hours, saved me a lot of time
1792020-11-29T19:13:07 <Provostro> do you have any steps you could point in a direction if i wanted to implement it on my own?
1802020-11-29T19:13:48 <Provostro> its like it just needs to parse -proxy for username and password and pass it to something else
1812020-11-29T19:13:59 <Provostro> or something
1822020-11-29T19:14:07 *** Talkless <Talkless!~Talkless@mail.dargis.net> has quit IRC (Quit: Konversation terminated!)
1832020-11-29T19:14:33 <Provostro> (thats why im not a programmer dude)
1842020-11-29T19:14:43 <sipa> yeah, pretty much
1852020-11-29T19:15:13 <sipa> you can also file an issue, if you'd like someone else to work on it
1862020-11-29T19:15:35 <sipa> of course, no guarantee that anyone will find it interesting/useful to spend their time on
1872020-11-29T19:15:50 <Provostro> thanks for help. i think it'd be a useful feature for more than just me, but i don't for sure.
1882020-11-29T19:15:57 <Provostro> *don't know for sure.
1892020-11-29T19:16:59 *** Provostro <Provostro!~Pvo@5.180.220.77> has left #bitcoin-core-dev ("Leaving")
1902020-11-29T19:17:01 <luke-jr> SOCKS authentication isn't secure, so..
1912020-11-29T19:30:31 *** kristapsk <kristapsk!~KK@gateway/tor-sasl/kristapsk> has joined #bitcoin-core-dev
1922020-11-29T19:38:56 *** CubicEarth <CubicEarth!~CubicEart@c-67-168-1-172.hsd1.wa.comcast.net> has quit IRC (Ping timeout: 240 seconds)
1932020-11-29T19:52:29 *** Bullit <Bullit!~Bullit01@042-236-158-163.dynamic.caiway.nl> has quit IRC (Read error: Connection reset by peer)
1942020-11-29T19:55:21 *** Bullit <Bullit!~Bullit01@042-236-158-163.dynamic.caiway.nl> has joined #bitcoin-core-dev
1952020-11-29T19:55:38 *** Bullit <Bullit!~Bullit01@042-236-158-163.dynamic.caiway.nl> has quit IRC (Remote host closed the connection)
1962020-11-29T19:56:05 *** Bullit <Bullit!~Bullit01@042-236-158-163.dynamic.caiway.nl> has joined #bitcoin-core-dev
1972020-11-29T19:57:55 *** joelklabo <joelklabo!~textual@157-131-101-185.fiber.dynamic.sonic.net> has quit IRC (Ping timeout: 265 seconds)
1982020-11-29T20:00:25 *** owowo <owowo!~ovovo@unaffiliated/ovovo> has quit IRC (Ping timeout: 240 seconds)
1992020-11-29T20:01:21 *** CubicEarth <CubicEarth!~CubicEart@c-67-168-1-172.hsd1.wa.comcast.net> has joined #bitcoin-core-dev
2002020-11-29T20:03:44 *** promag_ <promag_!~promag@188.250.84.129> has joined #bitcoin-core-dev
2012020-11-29T20:07:04 *** owowo <owowo!~ovovo@s91904425.blix.com> has joined #bitcoin-core-dev
2022020-11-29T20:10:35 *** luke-jr <luke-jr!~luke-jr@unaffiliated/luke-jr> has quit IRC (Quit: ZNC - http://znc.sourceforge.net)
2032020-11-29T20:10:57 *** luke-jr <luke-jr!~luke-jr@unaffiliated/luke-jr> has joined #bitcoin-core-dev
2042020-11-29T20:51:39 *** fearbeag <fearbeag!~sseanicid@bras-base-clwdon2201w-grc-18-216-209-44-58.dsl.bell.ca> has joined #bitcoin-core-dev
2052020-11-29T20:56:37 *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has quit IRC (Quit: = "")
2062020-11-29T21:11:23 *** Pavlenex <Pavlenex!~Thunderbi@178.220.103.52> has quit IRC (Ping timeout: 265 seconds)
2072020-11-29T21:17:16 *** fearbeag <fearbeag!~sseanicid@bras-base-clwdon2201w-grc-18-216-209-44-58.dsl.bell.ca> has quit IRC (Ping timeout: 240 seconds)
2082020-11-29T21:19:56 *** xi1 <xi1!~xi@178.239.168.171> has quit IRC (Remote host closed the connection)
2092020-11-29T21:21:19 *** fearbeag <fearbeag!~sseanicid@bras-base-clwdon2201w-grc-18-216-209-44-58.dsl.bell.ca> has joined #bitcoin-core-dev
2102020-11-29T21:29:07 *** fearbeag <fearbeag!~sseanicid@bras-base-clwdon2201w-grc-18-216-209-44-58.dsl.bell.ca> has quit IRC (Remote host closed the connection)
2112020-11-29T21:29:23 *** kristapsk_ <kristapsk_!~KK@gateway/tor-sasl/kristapsk> has joined #bitcoin-core-dev
2122020-11-29T21:29:29 *** fearbeag <fearbeag!~sseanicid@bras-base-clwdon2201w-grc-18-216-209-44-58.dsl.bell.ca> has joined #bitcoin-core-dev
2132020-11-29T21:31:23 *** kristapsk <kristapsk!~KK@gateway/tor-sasl/kristapsk> has quit IRC (Ping timeout: 240 seconds)
2142020-11-29T21:38:25 *** brycec1 <brycec1!~brycec@195.140.213.38> has joined #bitcoin-core-dev
2152020-11-29T21:43:34 * luke-jr wonders if there's a way to make git-grep-all faster
2162020-11-29T21:45:49 *** owowo <owowo!~ovovo@unaffiliated/ovovo> has quit IRC (Ping timeout: 264 seconds)
2172020-11-29T21:46:30 *** Tennis <Tennis!~Tennis@unaffiliated/tennis> has joined #bitcoin-core-dev
2182020-11-29T21:50:11 *** owowo <owowo!~ovovo@s91904423.blix.com> has joined #bitcoin-core-dev
2192020-11-29T22:16:07 *** Guyver2 <Guyver2!Guyver@guyver2.xs4all.nl> has quit IRC (Quit: Going offline, see ya! (www.adiirc.com))
2202020-11-29T22:16:24 *** filchef <filchef!~filchef@212.104.97.177> has joined #bitcoin-core-dev
2212020-11-29T22:17:25 *** filchef <filchef!~filchef@212.104.97.177> has quit IRC (Client Quit)
2222020-11-29T22:35:00 *** justanotheruser <justanotheruser!~justanoth@unaffiliated/justanotheruser> has quit IRC (Ping timeout: 265 seconds)
2232020-11-29T22:41:09 *** einyx <einyx!einyx@fsf/member/einyx> has quit IRC (Ping timeout: 260 seconds)
2242020-11-29T22:52:09 *** Tennis <Tennis!~Tennis@unaffiliated/tennis> has quit IRC (Read error: Connection reset by peer)
2252020-11-29T23:02:35 *** tylerchambers <tylerchambers!~tylercham@155.138.202.203> has quit IRC (Quit: leaving)
2262020-11-29T23:09:55 *** tylerchambers <tylerchambers!~tylercham@155.138.202.203> has joined #bitcoin-core-dev
2272020-11-29T23:20:55 *** eugene-ff <eugene-ff!~eugene_ff@2604:2000:1383:472b:74fb:214:d521:e2ea> has quit IRC ()
2282020-11-29T23:37:41 *** einyx <einyx!einyx@fsf/member/einyx> has joined #bitcoin-core-dev
2292020-11-29T23:45:36 *** Eagle[TM] <Eagle[TM]!~EagleTM@unaffiliated/eagletm> has quit IRC (Ping timeout: 240 seconds)