12021-06-08T00:02:30  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
  22021-06-08T00:02:30  <bitcoin-git> [bitcoin] sidhujag opened pull request #22185: fix -Wdocumentation -Werror=documentation logic in configure.ac (master...master) https://github.com/bitcoin/bitcoin/pull/22185
  32021-06-08T00:02:31  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
  42021-06-08T00:08:12  <achow101> ryanofsky: using #22155, I was able to write a test case where the dust change was more than the fees, so the recipients received more than specified by their CRecipients. So this case is not as contrived as we thought it was.
  52021-06-08T00:08:14  <gribble> https://github.com/bitcoin/bitcoin/issues/22155 | wallet test: Add test for subtract fee from recipient behavior by ryanofsky · Pull Request #22155 · bitcoin/bitcoin · GitHub
  62021-06-08T00:11:20  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has joined #bitcoin-core-dev
  72021-06-08T00:21:19  *** earnestly <earnestly!~earnest@user/earnestly> has quit IRC (Ping timeout: 245 seconds)
  82021-06-08T00:31:08  *** Guest5666 <Guest5666!~Guest56@072-182-044-252.res.spectrum.com> has joined #bitcoin-core-dev
  92021-06-08T00:31:55  *** Guest5666 <Guest5666!~Guest56@072-182-044-252.res.spectrum.com> has quit IRC (Client Quit)
 102021-06-08T00:33:23  <yanmaani> I've a problem
 112021-06-08T00:33:27  <yanmaani> I'm making two transactions
 122021-06-08T00:33:32  <yanmaani> at the same time
 132021-06-08T00:33:42  <yanmaani> the coin selector thus double-spends the input
 142021-06-08T00:34:10  <yanmaani> Is there an easy way to call CreateTransaction, look at the tx, find the change output, and then force that as input to the other transaction?
 152021-06-08T00:34:26  <yanmaani> Or alternatively, find the consumed input, and then blacklist that in the subsequent call?
 162021-06-08T00:38:14  *** Guest67 <Guest67!~Guest67@184.75.209.35> has joined #bitcoin-core-dev
 172021-06-08T00:39:51  <yanmaani> I think I could pass a coin control to CreateTx?
 182021-06-08T00:54:17  *** lightlike <lightlike!~lightlike@user/lightlike> has quit IRC (Quit: Leaving)
 192021-06-08T01:09:58  <gwillen> the coincontrol object sounds like the right way to do this, yeah, I don't remember the mechanics of it
 202021-06-08T01:11:56  <gwillen> you can use the Select method of CCoinControl to force a specific input to be used; I can't tell if you can force specific inputs NOT to be used without manually selecting all inputs
 212021-06-08T01:12:09  <gwillen> (m_add_inputs = false, if you want to only use selected inputs)
 222021-06-08T01:14:12  <gwillen> do you need to make both transactions without broadcasting the first one, or otherwise telling the wallet about it? I'm fuzzy on the exact details here, but I'm pretty sure if the wallet knows about the first transaction when you construct the second, it will do what you want (it will not re-select an already-used coin, even though the transaction was just created and obviously isn't confirmed yet, or maybe even broadcast)
 232021-06-08T01:26:06  <yanmaani> gwillen: oh, right. I have to add the first transaction somewhere in the wallet, and that'll fix it
 242021-06-08T01:26:11  <yanmaani> Is it possible to do this without broadcast?
 252021-06-08T01:26:35  <yanmaani> I could copy CommitTransaction but cut everything below if (!fBroadcastTransactions) {
 262021-06-08T01:27:18  <gwillen> if this is for Core, probably refactoring is better than copy-pasting, but it would help to know more about what you're doing. (If it's not for Core then probably I should direct you elsewhere ;-) )
 272021-06-08T01:27:53  *** luke-jr <luke-jr!~luke-jr@user/luke-jr> has quit IRC (Quit: ZNC - http://znc.sourceforge.net)
 282021-06-08T01:28:20  *** luke-jr <luke-jr!~luke-jr@user/luke-jr> has joined #bitcoin-core-dev
 292021-06-08T01:28:38  <yanmaani> Oh yeah, I found CWallet::MarkInputsDirty, that's what I want
 302021-06-08T01:28:45  <gwillen> I don't have the code open in front of me, but the existence of fBroadcastTranactions suggests maybe you can get it to add to the wallet without broadcasting, but if that's a global flag it's probably not ideal for this
 312021-06-08T01:28:49  <gwillen> ah, nice
 322021-06-08T01:34:59  <sipa> yanmaani: i don't think it is
 332021-06-08T01:35:13  <yanmaani> sipa: will that do something I don't want it to?
 342021-06-08T01:35:20  <sipa> that's just for marking cached balanced as outdated
 352021-06-08T01:35:46  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
 362021-06-08T01:35:46  <bitcoin-git> [bitcoin] hebasto opened pull request #22186: build, qt: Fix compiling qt package in depends with GCC 11 (master...210608-limits) https://github.com/bitcoin/bitcoin/pull/22186
 372021-06-08T01:35:47  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
 382021-06-08T01:35:54  <sipa> if you don't want the wallet to use coins you've spent, you should just add the spending tx to the wallet
 392021-06-08T01:35:58  <achow101> yanmaani: use the lockunspents rpc
 402021-06-08T01:36:10  <sipa> or that!
 412021-06-08T01:36:32  <achow101> *lockunspent
 422021-06-08T01:37:14  <yanmaani> sipa: can I do that if the tx isn't ready for broadcast?
 432021-06-08T01:37:58  <sipa> define "not ready" ?
 442021-06-08T01:38:09  <yanmaani> sipa: not final
 452021-06-08T01:38:16  <yanmaani> valid but not accepted to mempool
 462021-06-08T01:38:34  <sipa> i'm pretty sure the answer is yes
 472021-06-08T01:39:11  <sipa> that would also happen if you load an old wallet into a fresh datadir
 482021-06-08T01:39:48  <achow101> if you do sendrawtransaction, it will be added to the wallet, just not broadcast
 492021-06-08T01:39:53  <achow101> if it isn't final
 502021-06-08T01:40:13  <yanmaani> achow101: that'll cause an ugly log message, but yeah I could do that
 512021-06-08T01:40:52  <yanmaani> sipa: will I also have to mark cached balance as outdated?
 522021-06-08T01:41:00  <gwillen> achow101: but don't call an RPC directly
 532021-06-08T01:41:10  <achow101> yanmaani: you shouldn't mess with the cached balances
 542021-06-08T01:41:12  <gwillen> refactor whatever you need from the RPC into an appropriate place and call it there
 552021-06-08T01:41:13  <yanmaani> or will adding it to wallet take care of it
 562021-06-08T01:41:21  <gwillen> when you call an RPC directly from another RPC it has annoying consequences
 572021-06-08T01:41:41  <yanmaani> achow101: I'm looking at CWallet::CommitTransaction - it (1) adds to wallet and then (2) "Notify that old coins are spent"
 582021-06-08T01:41:44  <achow101> gwillen: I don't think he's proposing a code change, but rather trying to hack bitcoind to do a particular thing
 592021-06-08T01:41:55  <yanmaani> achow101: yeah, this isn't for mainline bitcoin core
 602021-06-08T01:42:04  <gwillen> *nods*
 612021-06-08T01:42:42  <yanmaani> (is it off-topic? It's still related to the bitcoin core codebase, right? :P)
 622021-06-08T01:43:08  <achow101> yanmaani: I don't think you need to modify core to do what you want
 632021-06-08T01:46:41  <yanmaani> achow101: this is for a fork, not a one-off hack
 642021-06-08T01:48:17  <sipa> that'd make it off topic :)
 652021-06-08T01:48:34  <fanquake> Sounds off topic to me
 662021-06-08T01:48:47  <yanmaani> sipa: oh sorry
 672021-06-08T01:48:57  <yanmaani> is there a separate place for the bitcoin core codebase per se?
 682021-06-08T01:50:29  <sipa> freenode had an ##altcoin-dev channel, dunno
 692021-06-08T01:54:08  <yanmaani> thanks
 702021-06-08T02:01:10  *** luke-jr <luke-jr!~luke-jr@user/luke-jr> has quit IRC (Quit: ZNC - http://znc.sourceforge.net)
 712021-06-08T02:05:40  *** luke-jr <luke-jr!~luke-jr@user/luke-jr> has joined #bitcoin-core-dev
 722021-06-08T02:06:16  *** bomb-on <bomb-on!~bomb-on@194.144.47.113> has quit IRC (Quit: aллилѹіа!)
 732021-06-08T03:27:14  *** p3r3grin <p3r3grin!~kevin@user/p3r3grin> has joined #bitcoin-core-dev
 742021-06-08T04:36:19  *** belcher <belcher!~belcher@user/belcher> has quit IRC (Ping timeout: 264 seconds)
 752021-06-08T04:44:25  *** sagi <sagi!~sagi@bzq-79-183-156-48.red.bezeqint.net> has joined #bitcoin-core-dev
 762021-06-08T04:49:11  *** belcher <belcher!~belcher@user/belcher> has joined #bitcoin-core-dev
 772021-06-08T05:02:02  *** p3r3grin <p3r3grin!~kevin@user/p3r3grin> has quit IRC (Quit: WeeChat 3.1)
 782021-06-08T05:09:15  *** earnestly <earnestly!~earnest@user/earnestly> has joined #bitcoin-core-dev
 792021-06-08T05:16:08  *** dviola <dviola!~diego@user/dviola> has joined #bitcoin-core-dev
 802021-06-08T05:32:22  *** redstar <redstar!~redstar@gateway/tor-sasl/redstar> has joined #bitcoin-core-dev
 812021-06-08T05:37:48  <redstar> I don't want to be rude but https://github.com/bitcoin/bitcoin/tree/master/doc mentions BitcoinTalk, and I think it should be removed because on BitcoinTalk users encouraged to sell weapons and run scams.
 822021-06-08T05:38:32  <redstar> there are many topics on BitcoinTalk in which they selling fully automatic assault riffles
 832021-06-08T05:38:49  <redstar> how that related to Bitcoin?
 842021-06-08T05:40:25  <redstar> I remember Cobra-Bitcoin kicked out theymos from the management of bitcoin.org for similar reasons
 852021-06-08T05:41:14  <redstar> theymos in fact is a criminal stolen 11,000 Bitcoin from the community while BitcoinTalk looks like something from the Iron-Age, not to mention the weapons, scams etc.
 862021-06-08T05:42:38  <redstar> would be way better to keep a distance from BitcoinTalk and not promote it in the Bitcoin source code because that maybe downloaded by kids as well
 872021-06-08T05:45:16  <redstar> BitcoinTalk not only engaged in weapon sales and scams but without any doubt is the most toxic environment even existed, personal attacks, doxing, defamation, libel, slander, and constant swearing
 882021-06-08T05:45:53  <redstar> excuse me for the typos
 892021-06-08T05:46:03  *** jespada <jespada!~jespada@90.254.242.55> has quit IRC (Ping timeout: 252 seconds)
 902021-06-08T05:47:59  *** jespada <jespada!~jespada@90.254.242.55> has joined #bitcoin-core-dev
 912021-06-08T05:48:40  *** goatpig <goatpig!~goat@blocksettle-gw.cust.31173.se> has joined #bitcoin-core-dev
 922021-06-08T05:52:24  <redstar> ANYONE UNDERSTAND THAT ON BITCOINTALK USERS SELLING WEAPONS?
 932021-06-08T05:52:32  <redstar> MR CORE DEVS?
 942021-06-08T05:52:34  <redstar> https://bitcointalk.org/index.php?topic=5281132.msg55399825#msg55399825
 952021-06-08T05:53:16  <redstar> is this what you wanna promote in https://github.com/bitcoin/bitcoin?
 962021-06-08T06:01:53  *** Kiminuo <Kiminuo!~Kiminuo@141.98.103.116> has joined #bitcoin-core-dev
 972021-06-08T06:06:14  <redstar> I going to slam the Bitcoin Core developers from promoting BitcoinTalk where weapon sales, personal attacks, doxing, defamation, libel, slander, and constant swearing is a standard. No worry I will not let slide under the hood belcher either who get paid by literal terrorists to vandalize and delete close to hundreds charity from the "Bitcoin Wiki" which again, owned by theymos. https://en.bitcoin.it/wiki/Talk:Donation-accepting_organ
 982021-06-08T06:06:14  <redstar> izations_and_projects#Page_is_filled_with_scam belcher got paid by hrf.org which literally MASSACRED 36 people in Bolivia (and that is not the only country) in Venezuela hrf.org organized BURNING PEOPLE alive! hrf.org also running since a year a so called "Bitcoin Development Fund" which is a pure scam playing the INTERMEDIARY role for marketing purposes, in fact many core developers got thousands of dollars from this right-wing
 992021-06-08T06:06:15  <redstar> terrorist organization. So in short you all should be ashamed for promoting WEAPON SALES, SCAMS and LITERAL TERRORIST! Soon we open the Bitcoin Forum at https://bitcoin.forum and this will be published there! Be prepared whats coming to your way! I will kick the hornet's nest just wait!
1002021-06-08T06:19:47  *** dviola <dviola!~diego@user/dviola> has quit IRC (Quit: WeeChat 3.1)
1012021-06-08T06:34:34  <luke-jr> redstar: none of this has anything to do with development; please take it to #bitcoin if you must rant
1022021-06-08T06:44:36  <redstar> hrf.org organized the coup and massacres in Bolivia: https://www.youtube.com/watch?v=mYX7koMKkPY
1032021-06-08T06:44:36  <redstar> hrf.org exposed for running a "human rights scam": https://www.youtube.com/watch?v=fhhyNm5rhHc
1042021-06-08T06:44:36  <redstar> WikiLeaks cable shows the United Nations rejected they application on the grounds of "TERROSISM": https://wikileaks.org/plusd/cables/08USUNNEWYORK516_a.html
1052021-06-08T06:44:36  <redstar> These maniacs attacking me and my organization for more than 6 years, I know what I'm talking about.
1062021-06-08T06:44:36  <redstar> hrf.org CEOs cousin is Leopoldo Lopez Mendoza who spotted recently on a private jet (which seized by the DEA for trafficing 500KG of Cocaine) https://thegrayzone.com/2020/12/26/leopoldo-lopez-venezuela-colombia-drugs/
1072021-06-08T06:44:41  <redstar> This shows that hrf.org is popped up neo-nazis in Bolivia: https://thegrayzone.com/2019/11/11/bolivia-coup-fascist-foreign-support-fernando-camacho/
1082021-06-08T06:44:45  <redstar> and this shows that hrf.org and Leopoldo Lopez Mendoza the cousin of the CEO (Thor Halvorssen Mendoza) was organizing the coup in Venezeula: https://thegrayzone.com/2019/01/29/the-making-of-juan-guaido-how-the-us-regime-change-laboratory-created-venezuelas-coup-leader/
1092021-06-08T06:44:49  <redstar> This stuff not even scraching the surface of the stuff I have on them, including confidential message I received from Washington D.C. to give them my passwords etc.
1102021-06-08T06:44:52  <redstar> Thw whole Bitcoin 2021 was organized by Peter McCormack and Alex Gladstein the "staregy officer" of hrf.org
1112021-06-08T06:44:55  <redstar> Don't tell me that without hrf.org's scam "bitcoin development fund" Bitcoin Core developers can't receive funds, are terrorist right-wing INTERMEDIARIES really needed? Isn't Bitcoin supposed to be peer-to-peer? Just remember when you deal with these people that they BURNING PEOPLE ALIVE and MASSACRING PEOPLE!
1122021-06-08T06:46:43  <redstar> yes it has luke-jr because Bitcoin Core developers happily accepting funds from this terrorist organization and even thanking them, if you use google for 5 minutes you can see hrf.org NEVER promoted Bitcoin prior to Juan Guaido decelred himself president of Venezuela and made HRF.org CEOs cousin a minister. You know transfering money from the USA to Venezuela is NOT POSSIBLE so they neede to find something to send money to nazis and
1132021-06-08T06:46:44  <redstar> found Bitcoin because of me and my websites!
1142021-06-08T06:47:39  <redstar> I warning Bitcoin Core developers to keep a distance from hrf.org and Alex Gladstein in particular
1152021-06-08T06:47:45  <luke-jr> I'd ask what developers they fund (none afaik, though I could be wrong), but it's off-topic here. Please take it somewhere else.
1162021-06-08T06:48:29  <luke-jr> this channel is just for development; not funding, forums, or anything else
1172021-06-08T06:50:23  <redstar> One more thing before I go, a photo: https://64.media.tumblr.com/36dd7476b11625fb1532d87ec68f1cc4/tumblr_inline_nqgo5hHNlM1sq7u0d_500.jpg <--- on this photo in the red t-shirt you see Alex Gladstein who smiling and showing the handsign of the "Ilbe Storehouse" which is and alt-right terrorist organization responsible for bombing, go ask any Korean person to confirm.
1182021-06-08T06:50:43  <redstar> that's all
1192021-06-08T06:50:56  <redstar> be proud now
1202021-06-08T06:51:27  *** redstar <redstar!~redstar@gateway/tor-sasl/redstar> has left #bitcoin-core-dev (Leaving)
1212021-06-08T07:15:24  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has joined #bitcoin-core-dev
1222021-06-08T07:19:44  *** smartin <smartin!~Icedove@88.135.18.171> has joined #bitcoin-core-dev
1232021-06-08T07:19:52  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has quit IRC (Ping timeout: 244 seconds)
1242021-06-08T07:20:43  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
1252021-06-08T07:20:43  <bitcoin-git> [bitcoin] MarcoFalke pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/e638acf69703...76d4018aa542
1262021-06-08T07:20:43  <bitcoin-git> bitcoin/master fad0c58 MarcoFalke: fuzz: Remove confusing return keyword from CallOneOf
1272021-06-08T07:20:43  <bitcoin-git> bitcoin/master fa13f34 MarcoFalke: fuzz: Increase branch coverage of the float fuzz target
1282021-06-08T07:20:43  <bitcoin-git> bitcoin/master 76d4018 MarcoFalke: Merge bitcoin/bitcoin#22180: fuzz: Increase branch coverage of the float f...
1292021-06-08T07:20:44  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
1302021-06-08T07:21:00  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
1312021-06-08T07:21:01  <bitcoin-git> [bitcoin] MarcoFalke merged pull request #22180: fuzz: Increase branch coverage of the float fuzz target (master...2106-fuzzFloat) https://github.com/bitcoin/bitcoin/pull/22180
1322021-06-08T07:21:02  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
1332021-06-08T07:21:56  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has joined #bitcoin-core-dev
1342021-06-08T07:24:51  *** robin_hood <robin_hood!uid503468@id-503468.brockwell.irccloud.com> has joined #bitcoin-core-dev
1352021-06-08T07:24:59  *** mably <mably!~mably@167.239.127.78.rev.sfr.net> has joined #bitcoin-core-dev
1362021-06-08T07:26:02  *** mably <mably!~mably@167.239.127.78.rev.sfr.net> has quit IRC (Client Quit)
1372021-06-08T07:26:30  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has quit IRC (Ping timeout: 272 seconds)
1382021-06-08T07:27:11  *** gribble <gribble!~gribble@bitcoin/bot/gribble> has quit IRC (Read error: Connection reset by peer)
1392021-06-08T07:27:31  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has joined #bitcoin-core-dev
1402021-06-08T07:32:37  *** gribble <gribble!~gribble@bitcoin/bot/gribble> has joined #bitcoin-core-dev
1412021-06-08T07:32:37  *** ChanServ sets mode: +o gribble
1422021-06-08T07:34:28  *** mamilis <mamilis!uid502224@id-502224.tinside.irccloud.com> has joined #bitcoin-core-dev
1432021-06-08T07:47:56  *** davterra <davterra!~davterra@178.128.106.205> has quit IRC (Remote host closed the connection)
1442021-06-08T07:48:17  *** davterra <davterra!~davterra@178.128.106.205> has joined #bitcoin-core-dev
1452021-06-08T07:52:40  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
1462021-06-08T07:52:40  <bitcoin-git> [bitcoin] domob1812 opened pull request #22187: test: Add sync_blocks in wallet_orphanedreward.py (master...fix-test) https://github.com/bitcoin/bitcoin/pull/22187
1472021-06-08T07:52:41  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
1482021-06-08T08:06:52  *** Guest67 <Guest67!~Guest67@184.75.209.35> has quit IRC (Ping timeout: 250 seconds)
1492021-06-08T08:13:05  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has quit IRC (Ping timeout: 244 seconds)
1502021-06-08T08:13:47  *** evias <evias!~evias__@196.red-88-6-131.staticip.rima-tde.net> has joined #bitcoin-core-dev
1512021-06-08T08:16:27  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has joined #bitcoin-core-dev
1522021-06-08T08:40:46  *** major1 <major1!~major@gateway/tor-sasl/major> has quit IRC (Ping timeout: 252 seconds)
1532021-06-08T08:41:39  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
1542021-06-08T08:41:40  <bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/76d4018aa542...45a8b01fad96
1552021-06-08T08:41:40  <bitcoin-git> bitcoin/master 7a681d6 Daniel Kraft: Add sync_blocks in wallet_orphanedreward.py.
1562021-06-08T08:41:40  <bitcoin-git> bitcoin/master 45a8b01 MarcoFalke: Merge bitcoin/bitcoin#22187: test: Add sync_blocks in wallet_orphanedrewar...
1572021-06-08T08:41:41  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
1582021-06-08T08:41:52  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has quit IRC (Ping timeout: 252 seconds)
1592021-06-08T08:41:56  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
1602021-06-08T08:41:57  <bitcoin-git> [bitcoin] MarcoFalke merged pull request #22187: test: Add sync_blocks in wallet_orphanedreward.py (master...fix-test) https://github.com/bitcoin/bitcoin/pull/22187
1612021-06-08T08:41:58  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
1622021-06-08T08:43:14  *** major1 <major1!~major@gateway/tor-sasl/major> has joined #bitcoin-core-dev
1632021-06-08T08:54:01  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
1642021-06-08T09:23:25  *** Kiminuo <Kiminuo!~Kiminuo@141.98.103.116> has quit IRC (Quit: Client closed)
1652021-06-08T09:25:49  *** thedragon <thedragon!~thedragon@user/thedragon> has quit IRC (Quit: Leaving)
1662021-06-08T10:04:01  *** thedragon <thedragon!~thedragon@user/thedragon> has joined #bitcoin-core-dev
1672021-06-08T10:09:14  *** bitdex <bitdex!~bitdex@gateway/tor-sasl/bitdex> has quit IRC (Quit: = "")
1682021-06-08T10:16:02  *** robin_hood <robin_hood!uid503468@id-503468.brockwell.irccloud.com> has left #bitcoin-core-dev
1692021-06-08T10:19:29  *** Kiminuo <Kiminuo!~Kiminuo@141.98.103.116> has joined #bitcoin-core-dev
1702021-06-08T10:29:59  *** gribble <gribble!~gribble@bitcoin/bot/gribble> has quit IRC (Remote host closed the connection)
1712021-06-08T10:30:44  *** Kiminuo <Kiminuo!~Kiminuo@141.98.103.116> has quit IRC (Ping timeout: 250 seconds)
1722021-06-08T10:35:33  *** gribble <gribble!~gribble@bitcoin/bot/gribble> has joined #bitcoin-core-dev
1732021-06-08T10:35:33  *** ChanServ sets mode: +o gribble
1742021-06-08T10:37:48  *** martinus <martinus!~martinus@212095005159.public.telering.at> has joined #bitcoin-core-dev
1752021-06-08T11:25:04  <willcl_ark> Has this internet outage caused some test failures?
1762021-06-08T11:29:59  *** bomb-on_ <bomb-on_!~bomb-on@194.144.47.113> has joined #bitcoin-core-dev
1772021-06-08T11:30:57  <fanquake> Looks like brew might be failing to install packages in some cases, and causing test failures
1782021-06-08T11:33:57  <willcl_ark> Seems like there's a big outage at Fastly https://downdetector.co.uk
1792021-06-08T11:58:10  *** Guest67 <Guest67!~Guest67@184.75.209.42> has joined #bitcoin-core-dev
1802021-06-08T12:05:52  *** bomb-on_ <bomb-on_!~bomb-on@194.144.47.113> has quit IRC (Quit: aллилѹіа!)
1812021-06-08T12:15:41  *** bomb-on_ <bomb-on_!~bomb-on@194.144.47.113> has joined #bitcoin-core-dev
1822021-06-08T12:41:05  *** dunxen <dunxen!dunxen@gateway/vpn/protonvpn/dunxen> has joined #bitcoin-core-dev
1832021-06-08T12:45:12  *** bomb-on_ <bomb-on_!~bomb-on@194.144.47.113> has quit IRC (Quit: aллилѹіа!)
1842021-06-08T12:47:57  *** AaronvanW <AaronvanW!~AaronvanW@71pc74.sshunet.nl> has joined #bitcoin-core-dev
1852021-06-08T13:00:52  *** ratelius <ratelius!ratelius@gateway/vpn/protonvpn/ratelius> has quit IRC (Quit: WeeChat 3.2-dev)
1862021-06-08T13:01:28  *** dunxen <dunxen!dunxen@gateway/vpn/protonvpn/dunxen> has quit IRC (Remote host closed the connection)
1872021-06-08T13:02:02  *** dunxen <dunxen!dunxen@gateway/vpn/protonvpn/dunxen> has joined #bitcoin-core-dev
1882021-06-08T13:07:07  *** ratelius <ratelius!ratelius@gateway/vpn/protonvpn/ratelius> has joined #bitcoin-core-dev
1892021-06-08T13:18:31  *** bomb-on_ <bomb-on_!~bomb-on@194.144.47.113> has joined #bitcoin-core-dev
1902021-06-08T13:27:17  <laanwj> seems that the outage is over?
1912021-06-08T13:28:00  *** jonatack <jonatack!jonatack@user/jonatack> has quit IRC (Ping timeout: 250 seconds)
1922021-06-08T13:46:07  *** andrewtoth <andrewtoth!~andrewtot@bras-base-toroon0954w-grc-79-174-94-4-173.dsl.bell.ca> has quit IRC (Ping timeout: 268 seconds)
1932021-06-08T13:47:02  *** andrewtoth <andrewtoth!~andrewtot@bras-base-toroon0954w-grc-79-174-94-4-173.dsl.bell.ca> has joined #bitcoin-core-dev
1942021-06-08T13:48:35  *** bomb-on_ <bomb-on_!~bomb-on@194.144.47.113> has quit IRC (Quit: aллилѹіа!)
1952021-06-08T13:49:12  *** andrewtoth <andrewtoth!~andrewtot@bras-base-toroon0954w-grc-79-174-94-4-173.dsl.bell.ca> has quit IRC (Read error: Connection reset by peer)
1962021-06-08T13:50:28  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has quit IRC (Ping timeout: 244 seconds)
1972021-06-08T13:55:19  *** dunxen <dunxen!dunxen@gateway/vpn/protonvpn/dunxen> has quit IRC (Quit: Leaving...)
1982021-06-08T13:56:06  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has joined #bitcoin-core-dev
1992021-06-08T14:04:53  *** stevenroose <stevenroose!~steven@2001:19f0:6801:83a:5157:a229:22ca:bdf9> has joined #bitcoin-core-dev
2002021-06-08T14:25:21  *** goatpig <goatpig!~goat@blocksettle-gw.cust.31173.se> has quit IRC (Quit: Konversation terminated!)
2012021-06-08T14:53:02  *** tutwidi[m] <tutwidi[m]!~tutwidima@2001:470:69fc:105::ead> has quit IRC (Remote host closed the connection)
2022021-06-08T14:53:03  *** dongcarl[m] <dongcarl[m]!~dongcarlm@2001:470:69fc:105::82> has quit IRC (Remote host closed the connection)
2032021-06-08T14:53:03  *** mrjumper[m] <mrjumper[m]!~mr-jumper@2001:470:69fc:105::7f1> has quit IRC (Read error: Connection reset by peer)
2042021-06-08T14:53:03  *** kvaciral[m] <kvaciral[m]!~kvaciralx@2001:470:69fc:105::17b> has quit IRC (Remote host closed the connection)
2052021-06-08T14:53:03  *** vincenzopalazzo <vincenzopalazzo!~vincenzop@2001:470:69fc:105::a67> has quit IRC (Read error: Connection reset by peer)
2062021-06-08T14:53:03  *** devrandom <devrandom!~devrandom@2001:470:69fc:105::d4d> has quit IRC (Remote host closed the connection)
2072021-06-08T14:53:03  *** prusnak[m] <prusnak[m]!~stickmatr@2001:470:69fc:105::98c> has quit IRC (Remote host closed the connection)
2082021-06-08T14:53:03  *** orionwl[m] <orionwl[m]!~orionwlx0@2001:470:69fc:105::80> has quit IRC (Remote host closed the connection)
2092021-06-08T14:53:37  *** orionwl[m] <orionwl[m]!~orionwlx0@2001:470:69fc:105::80> has joined #bitcoin-core-dev
2102021-06-08T14:54:22  *** vincenzopalazzo <vincenzopalazzo!~vincenzop@2001:470:69fc:105::a67> has joined #bitcoin-core-dev
2112021-06-08T14:54:23  *** devrandom <devrandom!~devrandom@2001:470:69fc:105::d4d> has joined #bitcoin-core-dev
2122021-06-08T14:54:23  *** prusnak[m] <prusnak[m]!~stickmatr@2001:470:69fc:105::98c> has joined #bitcoin-core-dev
2132021-06-08T14:54:34  *** mrjumper[m] <mrjumper[m]!~mr-jumper@2001:470:69fc:105::7f1> has joined #bitcoin-core-dev
2142021-06-08T14:54:34  *** tutwidi[m] <tutwidi[m]!~tutwidima@2001:470:69fc:105::ead> has joined #bitcoin-core-dev
2152021-06-08T14:54:34  *** kvaciral[m] <kvaciral[m]!~kvaciralx@2001:470:69fc:105::17b> has joined #bitcoin-core-dev
2162021-06-08T14:54:34  *** dongcarl[m] <dongcarl[m]!~dongcarlm@2001:470:69fc:105::82> has joined #bitcoin-core-dev
2172021-06-08T15:00:38  *** bomb-on_ <bomb-on_!~bomb-on@194.144.47.113> has joined #bitcoin-core-dev
2182021-06-08T15:02:18  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
2192021-06-08T15:02:18  <bitcoin-git> [bitcoin] MarcoFalke pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/45a8b01fad96...82bc7faec807
2202021-06-08T15:02:18  <bitcoin-git> bitcoin/master 906b6d9 Antoine Riard: test: Extend feature_rbf.py with no inherited signaling
2212021-06-08T15:02:18  <bitcoin-git> bitcoin/master 2eb0eed Antoine Riard: validation: document lack of inherited signaling in RBF policy
2222021-06-08T15:02:18  <bitcoin-git> bitcoin/master 82bc7fa MarcoFalke: Merge bitcoin/bitcoin#21946: Document and test lack of inherited signaling...
2232021-06-08T15:02:20  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
2242021-06-08T15:02:35  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
2252021-06-08T15:02:35  <bitcoin-git> [bitcoin] MarcoFalke merged pull request #21946: Document and test lack of inherited signaling in RBF policy (master...2021-05-rbf-noinheritance) https://github.com/bitcoin/bitcoin/pull/21946
2262021-06-08T15:02:37  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
2272021-06-08T15:11:37  *** bomb-on_ <bomb-on_!~bomb-on@194.144.47.113> has quit IRC (Quit: aллилѹіа!)
2282021-06-08T15:50:43  *** Guest5650 <Guest5650!~Guest56@58.182.42.155> has joined #bitcoin-core-dev
2292021-06-08T16:00:04  *** Guest67 <Guest67!~Guest67@184.75.209.42> has quit IRC (Ping timeout: 250 seconds)
2302021-06-08T16:02:16  *** Guest5650 <Guest5650!~Guest56@58.182.42.155> has quit IRC (Quit: Client closed)
2312021-06-08T16:11:44  *** jespada <jespada!~jespada@90.254.242.55> has quit IRC (Ping timeout: 245 seconds)
2322021-06-08T16:13:42  *** jespada <jespada!~jespada@90.254.242.55> has joined #bitcoin-core-dev
2332021-06-08T16:34:45  *** lightlike <lightlike!~lightlike@user/lightlike> has joined #bitcoin-core-dev
2342021-06-08T16:41:35  *** hirish <hirish!~hirish@ip85.ip-137-74-20.eu> has quit IRC (*.net *.split)
2352021-06-08T16:41:35  *** kanzure <kanzure!~kanzure@user/kanzure> has quit IRC (*.net *.split)
2362021-06-08T16:41:35  *** hebasto <hebasto!sid449604@highgate.irccloud.com> has quit IRC (*.net *.split)
2372021-06-08T16:41:35  *** Nebraskka <Nebraskka!~Nebraskka@user/nebraskka> has quit IRC (*.net *.split)
2382021-06-08T16:41:35  *** pinheadmz <pinheadmz!~pinheadmz@hns-contributor.dev> has quit IRC (*.net *.split)
2392021-06-08T16:41:35  *** _aj_ <_aj_!aj@user/aj/x-5857768> has quit IRC (*.net *.split)
2402021-06-08T16:41:40  *** _aj__ <_aj__!aj@cerulean.erisian.com.au> has joined #bitcoin-core-dev
2412021-06-08T16:41:55  *** hebasto <hebasto!sid449604@id-449604.highgate.irccloud.com> has joined #bitcoin-core-dev
2422021-06-08T16:42:23  *** Nebraskka <Nebraskka!~Nebraskka@user/nebraskka> has joined #bitcoin-core-dev
2432021-06-08T16:42:25  *** hirish <hirish!~hirish@ip85.ip-137-74-20.eu> has joined #bitcoin-core-dev
2442021-06-08T16:44:44  *** lkqwejhhgasdjhgn <lkqwejhhgasdjhgn!~kljkljklk@p200300d46f03bc0004ec6ca8130fc39a.dip0.t-ipconnect.de> has quit IRC (Quit: Konversation terminated!)
2452021-06-08T16:52:00  *** redstar <redstar!~redstar@gateway/tor-sasl/redstar> has joined #bitcoin-core-dev
2462021-06-08T16:57:07  <redstar> yanmaani I got a copy of the logs and I agree with that you got banned in #namecoin you have nothing to do there, stay here with #bitcoin-core-devs and work on get some help from the hrf.org maybe you and belcher able to promote better those who massacre people, well known terrorists, right-wingers, anti-feminist, anti-immigration, sinophobic, russophobic, islamophobic nazis. Go ahead yanmaani work with belcher in scamming more BTC.
2472021-06-08T16:57:07  <redstar> You can go and rant on Matrix, OFTC, Hackint of freenode. I did give you voice in #namecoin but this is the third time you needed to be banned, you will be not allowed back.
2482021-06-08T16:57:30  *** redstar <redstar!~redstar@gateway/tor-sasl/redstar> has left #bitcoin-core-dev (Leaving)
2492021-06-08T16:59:33  *** jonatack <jonatack!jonatack@user/jonatack> has joined #bitcoin-core-dev
2502021-06-08T17:02:02  *** Talkless <Talkless!~Talkless@mail.dargis.net> has joined #bitcoin-core-dev
2512021-06-08T17:03:19  <michaelfolkson> redstar: You've already been asked not to post on this channel, this channel is for Core development discussion. Please go to another channel (e.g. #bitcoin) for discussion on organizations
2522021-06-08T17:12:26  *** bomb-on <bomb-on!~bomb-on@194.144.47.113> has joined #bitcoin-core-dev
2532021-06-08T17:32:39  *** pinheadmz <pinheadmz!~pinheadmz@hns-contributor.dev> has joined #bitcoin-core-dev
2542021-06-08T17:49:19  *** mamilis <mamilis!uid502224@id-502224.tinside.irccloud.com> has quit IRC (Quit: Connection closed for inactivity)
2552021-06-08T18:10:35  *** redstar <redstar!~redstar@gateway/tor-sasl/redstar> has joined #bitcoin-core-dev
2562021-06-08T18:10:52  * redstar silent
2572021-06-08T18:15:19  *** tylerchambers <tylerchambers!sid477594@id-477594.tinside.irccloud.com> has joined #bitcoin-core-dev
2582021-06-08T18:15:36  *** tylerchambers <tylerchambers!sid477594@id-477594.tinside.irccloud.com> has quit IRC (Client Quit)
2592021-06-08T18:15:51  *** tylerchambers <tylerchambers!sid477594@id-477594.tinside.irccloud.com> has joined #bitcoin-core-dev
2602021-06-08T18:19:38  *** tylerchambers <tylerchambers!sid477594@id-477594.tinside.irccloud.com> has quit IRC (Client Quit)
2612021-06-08T18:30:00  *** redstar <redstar!~redstar@gateway/tor-sasl/redstar> has quit IRC (Remote host closed the connection)
2622021-06-08T18:30:26  *** redstar <redstar!~redstar@gateway/tor-sasl/redstar> has joined #bitcoin-core-dev
2632021-06-08T18:43:19  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
2642021-06-08T18:43:30  *** ChanServ sets mode: +o bitcoin-git
2652021-06-08T18:44:21  *** bitcoin-git sets mode: +b *!*@gateway/tor-sasl/redstar
2662021-06-08T18:44:29  *** redstar was kicked by bitcoin-git (redstar)
2672021-06-08T18:44:46  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has quit IRC (Client Quit)
2682021-06-08T19:07:39  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has quit IRC (Ping timeout: 272 seconds)
2692021-06-08T19:14:41  *** Talkless <Talkless!~Talkless@mail.dargis.net> has quit IRC (Quit: Konversation terminated!)
2702021-06-08T19:18:16  *** Guest1 <Guest1!~Guest1@7f92-9019-504f-6037-5e80-8c93-07d0-2001.dyn.estpak.ee> has joined #bitcoin-core-dev
2712021-06-08T19:19:20  *** Guest1 <Guest1!~Guest1@7f92-9019-504f-6037-5e80-8c93-07d0-2001.dyn.estpak.ee> has quit IRC (Client Quit)
2722021-06-08T19:36:38  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has joined #bitcoin-core-dev
2732021-06-08T19:37:22  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has left #bitcoin-core-dev
2742021-06-08T19:37:37  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
2752021-06-08T19:44:19  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has left #bitcoin-core-dev
2762021-06-08T19:44:34  *** smartin <smartin!~Icedove@88.135.18.171> has quit IRC (Quit: smartin)
2772021-06-08T19:44:40  *** yanmaani <yanmaani!~yanmaani@gateway/tor-sasl/yanmaani> has joined #bitcoin-core-dev
2782021-06-08T19:46:57  *** kanzure <kanzure!~kanzure@user/kanzure> has joined #bitcoin-core-dev
2792021-06-08T19:57:57  <jonasschnelli_> gitian 0.20.2rc2 signatures are pushed (sorry for the delay). Happy building...
2802021-06-08T19:58:03  *** jonasschnelli_ is now known as jonasschnelli
2812021-06-08T19:58:39  * hebasto starting signing...
2822021-06-08T20:03:36  *** murch <murch!~murch@user/murch> has joined #bitcoin-core-dev
2832021-06-08T20:03:48  *** murch <murch!~murch@user/murch> has quit IRC (Client Quit)
2842021-06-08T20:04:49  *** murch <murch!~murch@user/murch> has joined #bitcoin-core-dev
2852021-06-08T20:14:39  <jonasschnelli> the signature failes to apply (used wrong version of apple sign). Builders please wait.
2862021-06-08T20:27:59  *** luke-jr <luke-jr!~luke-jr@user/luke-jr> has quit IRC (Read error: Connection reset by peer)
2872021-06-08T20:33:30  *** luke-jr <luke-jr!~luke-jr@user/luke-jr> has joined #bitcoin-core-dev
2882021-06-08T20:45:13  <jonasschnelli> signature is fixed (new signature is pushed). Now you can build/run the 0.20.2rc2 macOS/win signers.
2892021-06-08T20:52:25  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
2902021-06-08T20:52:25  <bitcoin-git> [bitcoin] achow101 opened pull request #22190: Use latest signapple commit (master...update-signapple-commit) https://github.com/bitcoin/bitcoin/pull/22190
2912021-06-08T20:52:27  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
2922021-06-08T20:59:39  *** jonatack <jonatack!jonatack@user/jonatack> has quit IRC (Ping timeout: 245 seconds)
2932021-06-08T21:09:26  *** evias <evias!~evias__@user/evias> has quit IRC (Quit: This computer has gone to sleep)
2942021-06-08T21:11:30  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
2952021-06-08T21:11:30  <bitcoin-git> [bitcoin] achow101 opened pull request #22191: [0.21] gitian: Use custom MacOS code signing tool  (0.21...0.21-signapple) https://github.com/bitcoin/bitcoin/pull/22191
2962021-06-08T21:11:31  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
2972021-06-08T21:11:57  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
2982021-06-08T21:11:57  <bitcoin-git> [bitcoin] achow101 opened pull request #22192: [0.20] gitian: Use custom MacOS code signing tool (0.20...0.20-signapple) https://github.com/bitcoin/bitcoin/pull/22192
2992021-06-08T21:11:58  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
3002021-06-08T21:52:46  *** evias <evias!~evias__@196.red-88-6-131.staticip.rima-tde.net> has joined #bitcoin-core-dev
3012021-06-08T21:53:41  *** evias <evias!~evias__@user/evias> has quit IRC (Client Quit)
3022021-06-08T22:19:10  *** major1 <major1!~major@gateway/tor-sasl/major> has quit IRC (Ping timeout: 252 seconds)
3032021-06-08T22:20:17  *** major1 <major1!~major@gateway/tor-sasl/major> has joined #bitcoin-core-dev
3042021-06-08T22:48:09  *** F1nny <F1nny!~f1nny@user/f1nny> has quit IRC (Quit: Termd)
3052021-06-08T22:49:32  *** jespada <jespada!~jespada@90.254.242.55> has quit IRC (Ping timeout: 264 seconds)
3062021-06-08T22:50:21  *** jespada <jespada!~jespada@90.254.242.55> has joined #bitcoin-core-dev
3072021-06-08T23:00:29  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has quit IRC (Ping timeout: 245 seconds)
3082021-06-08T23:12:58  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has joined #bitcoin-core-dev
3092021-06-08T23:25:33  *** jarthur <jarthur!~jarthur@2603-8080-1540-002d-1509-6b3d-343f-7851.res6.spectrum.com> has quit IRC (Quit: jarthur)
3102021-06-08T23:32:04  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has joined #bitcoin-core-dev
3112021-06-08T23:32:04  <bitcoin-git> [bitcoin] theStack opened pull request #22193: bitcoin-tx: validate range of parsed output amount (master...202106-bitcoin-tx-validate_money_range) https://github.com/bitcoin/bitcoin/pull/22193
3122021-06-08T23:32:06  *** bitcoin-git <bitcoin-git!~bitcoin-g@x0f.org> has left #bitcoin-core-dev
3132021-06-08T23:33:37  *** earnestly <earnestly!~earnest@user/earnestly> has quit IRC (Ping timeout: 252 seconds)
3142021-06-08T23:50:45  *** sipsorcery <sipsorcery!~sipsorcer@2a02:8084:6981:7880::3> has quit IRC (Ping timeout: 272 seconds)