--- Log opened Wed Jun 12 00:00:22 2024 00:01 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 252 seconds] 00:01 -!- Guyver2 [~Guyver@77-174-98-73.fixed.kpn.net] has quit [Quit: Going offline, see ya! (www.adiirc.com)] 00:10 -!- vasild [~vd@user/vasild] has quit [Remote host closed the connection] 00:15 -!- jespada_ [~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net] has quit [Ping timeout: 268 seconds] 00:22 -!- jespada [~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net] has joined #bitcoin-core-dev 00:25 -!- vasild [~vd@user/vasild] has joined #bitcoin-core-dev 00:25 -!- lbia [~lbia@user/lbia] has quit [Ping timeout: 252 seconds] 00:46 < vasild> dergoegge: I am trying to understand your comment at https://github.com/bitcoin/bitcoin/pull/30211#discussion_r1633223401 "This is what causes the fuzz input to never be interpreted as one continuous sequence of data, which is why mutations that insert pieces of data (e.g. from a dictionary) are ineffective." -- "interpreted" by who? The code in i2p.cpp will behave in the same way if the data is 00:47 < vasild> supplied byte-by-byte by the socket, or e.g. 20 bytes at a time. Do you mean "interpreted" by the fuzz engine? 00:53 -!- BrandonOdiwuor [~BrandonOd@105.163.157.242] has quit [Quit: Client closed] 00:53 < vasild> Is the fuzz engine even aware of how data is consumed from fuzzed_data_provider? My understanding is that what matters is the code coverage and that it is irrelevant whether the fuzzed_data_provider is consumed 1 or 20 bytes at a time. 01:00 -!- SpellChecker_ [~SpellChec@user/SpellChecker] has joined #bitcoin-core-dev 01:00 -!- SpellChecker [~SpellChec@user/SpellChecker] has quit [Ping timeout: 260 seconds] 01:20 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 01:20 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 256 seconds] 01:22 < dergoegge> vasild: I meant interpreted by our harnesses. "never interpreted as one continuous sequence of data": RecvUntilTerminator returns bytes that are not a continuous sequence in the fuzz input it self. 01:22 < dergoegge> For example, if RecvUntilTerminator returns "OK=foobar" then the actual fuzz input will have looked something like "OK=foobar" as opposed to "OK=foobar" 01:22 < dergoegge> This is why a fuzzer has a hard time inserting interesting sequences of data into the input, which makes it less efficient and finding new coverage 01:27 -!- puchka [~puchka@185.203.122.201] has joined #bitcoin-core-dev 01:32 < vasild> Aha, is this because RecvUntilTerminator() calls Recv() (which consumes 1 byte) and then calls Wait() (which will consume further bytes) 01:33 -!- Guest59 [~Guest59@2605:52c0:2:4de:f040:60ff:fe3f:6e4a] has joined #bitcoin-core-dev 01:35 -!- brunoerg [~brunoerg@2804:14c:3bfb:37:38b6:9afd:da22:684] has quit [Remote host closed the connection] 01:36 -!- brunoerg [~brunoerg@2804:14c:3bfb:37:38b6:9afd:da22:684] has joined #bitcoin-core-dev 01:37 < vasild> dergoegge: if FuzzedSock overrides the RecvUntilTerminator() method from Sock with one that does not call Wait() then that would work as well, I guess 01:43 < vasild> Hmm, is it not all the same for the fuzzing engine whether it will generate "OK" or "OK". The second one could be _the interesting_ sequence (surely that would not work with a dictionary that has "OK") 01:43 < dergoegge> Wait() consumes further bytes and so does FuzzedSock::Recv (i.e. a bunch of ConsumeBool() calls). 01:44 < vasild> right, I see how to be interesting the message has to be dispersed among the input, e.g. instead of "OK" it has to be "OK". 01:47 < vasild> Is it easier or more likely for the fuzz engine to generate "OK" instead of "OK"? 01:47 -!- mailman007 [~mailman00@103.166.150.118] has joined #bitcoin-core-dev 01:47 -!- mailman007 [~mailman00@103.166.150.118] has quit [K-Lined] 01:48 -!- mailman007 [~mailman00@119.155.215.190] has joined #bitcoin-core-dev 01:48 -!- mailman007 [~mailman00@119.155.215.190] has quit [K-Lined] 01:48 < dergoegge> We can supply most fuzz engines with a dictionary to use but they also pick up "interesting byte sequences" during program execution by observing e.g. memcmp calls or cmp instructions. 01:48 < dergoegge> In the case of the i2p harness it picks up strings from the SAM protocol like "RESULT=OK" but inserting them into the input directly is useless as the input is not interpreted that way. 01:50 < vasild> ok, fair enough 01:50 -!- mailman007 [~mailman00@185.173.235.122] has joined #bitcoin-core-dev 01:50 -!- mailman007 [~mailman00@185.173.235.122] has quit [K-Lined] 01:53 < vasild> dergoegge: thanks! 02:01 -!- Guest59 [~Guest59@2605:52c0:2:4de:f040:60ff:fe3f:6e4a] has quit [Ping timeout: 250 seconds] 02:23 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 02:24 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 02:24 -!- Guyver2 [~Guyver@77-174-98-73.fixed.kpn.net] has joined #bitcoin-core-dev 02:25 < bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/91e0beede285...416e26c1db77 02:25 < bitcoin-git> bitcoin/master 3d4ca62 fanquake: doc: add release note for 29091 and 29165 02:25 < bitcoin-git> bitcoin/master 416e26c merge-script: Merge bitcoin/bitcoin#30261: doc: add release note for 29091 and 29165 02:26 < bitcoin-git> [bitcoin] fanquake merged pull request #30261: doc: add release note for 29091 and 29165 (master...release_notes_compilers) https://github.com/bitcoin/bitcoin/pull/30261 02:30 -!- lbia [~lbia@user/lbia] has joined #bitcoin-core-dev 02:30 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 02:31 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 268 seconds] 02:32 < bitcoin-git> [bitcoin] fanquake pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/416e26c1db77...5ee6b76c69d5 02:32 < bitcoin-git> bitcoin/master 27e70f1 Ava Chow: consensus: Store transaction nVersion as uint32_t 02:32 < bitcoin-git> bitcoin/master 429ec1a Ava Chow: refactor: Rename CTransaction::nVersion to version 02:32 < bitcoin-git> bitcoin/master 5ee6b76 merge-script: Merge bitcoin/bitcoin#29325: consensus: Store transaction nVersion as uint... 02:32 < bitcoin-git> [bitcoin] fanquake merged pull request #29325: consensus: Store transaction nVersion as uint32_t (master...tx-nversion-uint) https://github.com/bitcoin/bitcoin/pull/29325 03:25 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 03:27 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 03:42 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 03:44 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 03:54 -!- mcey [~emcy@148.252.144.166] has joined #bitcoin-core-dev 03:55 -!- emcy__ [~emcy@85.255.235.201] has quit [Ping timeout: 264 seconds] 03:56 -!- maflcko [~none@107.172.8.183] has quit [Remote host closed the connection] 03:58 -!- Chris_Stewart_5 [~Chris_Ste@87.249.134.20] has quit [Ping timeout: 252 seconds] 03:58 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 03:58 -!- Chris_Stewart_5 [~Chris_Ste@87.249.134.20] has joined #bitcoin-core-dev 04:00 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 256 seconds] 04:02 -!- maflcko [~none@107.172.8.183] has joined #bitcoin-core-dev 04:07 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 04:09 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 246 seconds] 04:10 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 04:12 -!- BrandonOdiwuor [~BrandonOd@105.163.157.242] has joined #bitcoin-core-dev 04:12 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 04:42 -!- SpellChecker [~SpellChec@user/SpellChecker] has joined #bitcoin-core-dev 04:43 -!- SpellChecker_ [~SpellChec@user/SpellChecker] has quit [Quit: bye] 04:49 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 04:51 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 04:53 -!- josie_ [~josibake@suhail.uberspace.de] has joined #bitcoin-core-dev 04:54 -!- josie [~josibake@suhail.uberspace.de] has quit [Ping timeout: 240 seconds] 04:55 < bitcoin-git> [bitcoin] glozow pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/5ee6b76c69d5...aa6b876e010e 04:55 < bitcoin-git> bitcoin/master f51da34 Cory Fields: utils: add missing include 04:55 < bitcoin-git> bitcoin/master aa6b876 glozow: Merge bitcoin/bitcoin#30268: util: add missing VecDeque include 04:55 < bitcoin-git> [bitcoin] glozow merged pull request #30268: util: add missing VecDeque include (master...vecdeque-missing-include) https://github.com/bitcoin/bitcoin/pull/30268 04:58 -!- SpellChecker [~SpellChec@user/SpellChecker] has quit [Quit: bye] 04:58 -!- SpellChecker [~SpellChec@user/SpellChecker] has joined #bitcoin-core-dev 05:06 < bitcoin-git> [bitcoin] glozow pushed 6 commits to 26.x: https://github.com/bitcoin/bitcoin/compare/6d7a1e367067...d10cf127e576 05:06 < bitcoin-git> bitcoin/26.x 7b2489f Hennadii Stepanov: depends: Fetch miniupnpc sources from an alternative website 05:06 < bitcoin-git> bitcoin/26.x b992297 Hennadii Stepanov: qt: 26.2rc1 translations update 05:06 < bitcoin-git> bitcoin/26.x 4c824bb glozow: [build] bump to version 26.2rc1 05:07 < bitcoin-git> [bitcoin] glozow merged pull request #30260: [26.x] backports and final changes for 26.2rc1 (26.x...2024-06-26.2rc1) https://github.com/bitcoin/bitcoin/pull/30260 05:36 < bitcoin-git> [bitcoin] glozow pushed tag v26.2rc1: https://github.com/bitcoin/bitcoin/compare/v26.2rc1 06:42 < bitcoin-git> [bitcoin] fanquake opened pull request #30270: Update minisketch subtree to eb37a9b8e79f9e49d73b96a49bf97a96d9eb676c (master...update_minisketch_subtree) https://github.com/bitcoin/bitcoin/pull/30270 06:43 -!- abubakarsadiq [uid602234@id-602234.hampstead.irccloud.com] has joined #bitcoin-core-dev 06:50 -!- lbia [~lbia@user/lbia] has quit [Ping timeout: 252 seconds] 06:54 -!- lbia [~lbia@user/lbia] has joined #bitcoin-core-dev 06:55 -!- preimage [~halosghos@user/halosghost] has joined #bitcoin-core-dev 07:00 < bitcoin-git> [bitcoin] maflcko opened pull request #30271: doc: Mention EOL policy in release notes template (master...2406-doc-eol) https://github.com/bitcoin/bitcoin/pull/30271 07:00 < bitcoin-git> [bitcoin] glozow opened pull request #30272: doc: use TRUC instead of v3 and add release note (master...2024-06-v3-followups) https://github.com/bitcoin/bitcoin/pull/30272 07:01 < bitcoin-git> [bitcoin] vasild opened pull request #30273: fuzz: FuzzedSock::Recv() don't lose bytes from MSG_PEEK read (master...fuzzedsock_unbreak_recv_peek) https://github.com/bitcoin/bitcoin/pull/30273 07:14 < bitcoin-git> [bitcoincore.org] glozow pushed 3 commits to master: https://github.com/bitcoin-core/bitcoincore.org/compare/780d6232e544...dc2aee8b2a6b 07:14 < bitcoin-git> bitcoincore.org/master d815672 fanquake: maintenance: remove EOL 24.0 07:14 < bitcoin-git> bitcoincore.org/master 65829aa fanquake: maintenance: use .x to make it clearer the "branch" is maintained 07:14 < bitcoin-git> bitcoincore.org/master dc2aee8 glozow: Merge bitcoin-core/bitcoincore.org#1026: maintenance: remove EOL 24.0 & us... 07:14 < bitcoin-git> [bitcoincore.org] glozow merged pull request #1026: maintenance: remove EOL 24.0 & use .x over .0 (master...use_dot_x) https://github.com/bitcoin-core/bitcoincore.org/pull/1026 07:17 < bitcoin-git> [bitcoin] maflcko closed pull request #30271: doc: Mention EOL policy in release notes template (master...2406-doc-eol) https://github.com/bitcoin/bitcoin/pull/30271 07:19 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 07:21 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 255 seconds] 07:42 -!- bugs_ [~bugs@user/bugs/x-5128603] has joined #bitcoin-core-dev 08:00 < bitcoin-git> [bitcoincore.org] fanquake opened pull request #1027: Fixup 892 (master...fixup_892) https://github.com/bitcoin-core/bitcoincore.org/pull/1027 08:00 < bitcoin-git> [bitcoincore.org] fanquake closed pull request #892: Add `--ignore-missing` flag to `shasum` command on MacOS (master...shasum-ignore-missing) https://github.com/bitcoin-core/bitcoincore.org/pull/892 08:05 -!- mudsip [~mudsip@user/mudsip] has joined #bitcoin-core-dev 08:06 -!- mudsip [~mudsip@user/mudsip] has quit [Client Quit] 08:20 < bitcoin-git> [bitcoin] ismaelsadeeq opened pull request #30275: Fee Estimation: change `estimatesmartfee` default mode to `economical` (master...06-2024-change-estimatesmartfee-default) https://github.com/bitcoin/bitcoin/pull/30275 08:27 -!- zeropoint [~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 08:54 < bitcoin-git> [bitcoincore.org] fanquake opened pull request #1028: download: default to ARM macOS downloads over x86_64 (master...arm_mac_default) https://github.com/bitcoin-core/bitcoincore.org/pull/1028 09:00 < bitcoin-git> [bitcoin] fanquake opened pull request #30276: doc: archive release notes for v27.1 (master...archive_rel_notes_27_1) https://github.com/bitcoin/bitcoin/pull/30276 09:05 -!- preimage [~halosghos@user/halosghost] has quit [Quit: WeeChat 4.2.2] 09:05 -!- preimage [~halosghos@user/halosghost] has joined #bitcoin-core-dev 09:13 -!- Guest78 [~Guest78@2600:387:f:5d35::4] has joined #bitcoin-core-dev 09:15 -!- Guest78 [~Guest78@2600:387:f:5d35::4] has quit [Client Quit] 09:18 -!- zeropoint [~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net] has quit [Quit: leaving] 09:35 -!- mcey_ [~emcy@148.252.129.198] has joined #bitcoin-core-dev 09:38 -!- mcey [~emcy@148.252.144.166] has quit [Ping timeout: 240 seconds] 09:40 -!- preimage [~halosghos@user/halosghost] has quit [Quit: WeeChat 4.2.2] 09:40 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 09:41 -!- preimage [~halosghos@user/halosghost] has joined #bitcoin-core-dev 10:00 < bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/aa6b876e010e...d0cb5167d6d8 10:00 < bitcoin-git> bitcoin/master 193c748 marcofleon: fuzz: add I2P harness 10:00 < bitcoin-git> bitcoin/master d0cb516 merge-script: Merge bitcoin/bitcoin#30230: fuzz: add I2P harness 10:00 < bitcoin-git> [bitcoin] fanquake merged pull request #30230: fuzz: add I2P harness (master...2024/05/add-i2p-test) https://github.com/bitcoin/bitcoin/pull/30230 10:12 -!- Guyver2 [~Guyver@77-174-98-73.fixed.kpn.net] has left #bitcoin-core-dev [Closing Window] 10:16 < bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/d0cb5167d6d8...a7bc9b76e73f 10:16 < bitcoin-git> bitcoin/master faa41e2 MarcoFalke: fuzz: Use std::span in FuzzBufferType 10:16 < bitcoin-git> bitcoin/master a7bc9b7 merge-script: Merge bitcoin/bitcoin#30229: fuzz: Use std::span in FuzzBufferType 10:16 < bitcoin-git> [bitcoin] fanquake merged pull request #30229: fuzz: Use std::span in FuzzBufferType (master...2406-fuzz-span) https://github.com/bitcoin/bitcoin/pull/30229 10:18 < bitcoin-git> [bitcoin] sr-gi opened pull request #30277: [DO NOT MERGE] Erlay: bandwidth-efficient transaction relay protocol (Full implementation) (master...202406-erlay-full-draft) https://github.com/bitcoin/bitcoin/pull/30277 10:22 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 264 seconds] 10:23 -!- BrandonOdiwuor [~BrandonOd@105.163.157.242] has quit [Quit: Client closed] 10:24 < bitcoin-git> [qa-assets] marcofleon opened pull request #187: Dictionary for I2P test (main...2024/06/add-i2p-dict) https://github.com/bitcoin-core/qa-assets/pull/187 10:30 -!- Talkless [~Talkless@mail.dargis.net] has joined #bitcoin-core-dev 10:35 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 10:44 -!- w0xlt [sid555702@id-555702.ilkley.irccloud.com] has quit [Quit: Connection closed for inactivity] 10:53 < bitcoin-git> [qa-assets] dergoegge merged pull request #187: Dictionary for I2P test (main...2024/06/add-i2p-dict) https://github.com/bitcoin-core/qa-assets/pull/187 10:53 < bitcoin-git> [qa-assets] dergoegge pushed 2 commits to main: https://github.com/bitcoin-core/qa-assets/compare/3eb05c3c94e2...00da326d3508 10:53 < bitcoin-git> qa-assets/main be44d3d marcofleon: add dictionary for I2P test 10:53 < bitcoin-git> qa-assets/main 00da326 Niklas Gögge: Merge pull request #187 from marcofleon/2024/06/add-i2p-dict 11:01 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 256 seconds] 11:05 -!- kouloumos [sid539228@id-539228.tinside.irccloud.com] has quit [Read error: Connection reset by peer] 11:06 -!- jesseposner_ [uid580595@user/jesseposner] has joined #bitcoin-core-dev 11:06 -!- RubenSomsen [sid301948@user/rubensomsen] has quit [Read error: Connection reset by peer] 11:06 -!- kouloumos [sid539228@id-539228.tinside.irccloud.com] has joined #bitcoin-core-dev 11:06 -!- RubenSomsen [sid301948@user/rubensomsen] has joined #bitcoin-core-dev 11:07 -!- jesseposner [uid580595@user/jesseposner] has quit [Ping timeout: 256 seconds] 11:07 -!- jesseposner_ is now known as jesseposner 11:13 -!- jqq_ [sid628190@id-628190.uxbridge.irccloud.com] has quit [Read error: Connection reset by peer] 11:13 -!- elichai2 [sid212594@id-212594.hampstead.irccloud.com] has quit [Read error: Connection reset by peer] 11:13 -!- jqq_ [sid628190@id-628190.uxbridge.irccloud.com] has joined #bitcoin-core-dev 11:13 -!- elichai2 [sid212594@id-212594.hampstead.irccloud.com] has joined #bitcoin-core-dev 11:14 -!- hugohn____ [sid304114@id-304114.lymington.irccloud.com] has quit [Ping timeout: 256 seconds] 11:14 -!- hugohn____ [sid304114@id-304114.lymington.irccloud.com] has joined #bitcoin-core-dev 11:32 -!- abubakarsadiq [uid602234@id-602234.hampstead.irccloud.com] has quit [Quit: Connection closed for inactivity] 12:27 < bitcoin-git> [bitcoin-detached-sigs] achow101 pushed 1 commit to 27.x: https://github.com/bitcoin-core/bitcoin-detached-sigs/compare/a8080157b0e3...c861fcad1151 12:27 < bitcoin-git> bitcoin-detached-sigs/27.x c861fca Ava Chow: 27.1: win sig for final 12:32 -!- jqq_ [sid628190@id-628190.uxbridge.irccloud.com] has quit [Read error: Connection reset by peer] 12:32 -!- jqq_ [sid628190@id-628190.uxbridge.irccloud.com] has joined #bitcoin-core-dev 12:41 -!- chris132 [sid465460@id-465460.helmsley.irccloud.com] has joined #bitcoin-core-dev 12:58 -!- Talkless [~Talkless@mail.dargis.net] has quit [Remote host closed the connection] 13:08 < bitcoin-git> [bitcoin] brunoerg opened pull request #30278: test: cover more errors for `signrawtransactionwithkey` RPC (master...2024-06-test-signrawtransactionwithkey) https://github.com/bitcoin/bitcoin/pull/30278 13:49 -!- Chris_Stewart_5 [~Chris_Ste@87.249.134.20] has quit [Ping timeout: 240 seconds] 13:49 -!- Chris_Stewart_5 [~Chris_Ste@87.249.134.20] has joined #bitcoin-core-dev 13:55 -!- Chris_Stewart_5 [~Chris_Ste@87.249.134.20] has quit [Ping timeout: 240 seconds] 13:58 -!- Chris_Stewart_5 [~Chris_Ste@68.235.43.80] has joined #bitcoin-core-dev 14:13 < bitcoin-git> [bitcoin] achow101 pushed 14 commits to master: https://github.com/bitcoin/bitcoin/compare/a7bc9b76e73f...011a895a82df 14:13 < bitcoin-git> bitcoin/master ffa27af Ryan Ofsky: test: Add check-deps.sh script to check for unexpected library dependencies 14:13 < bitcoin-git> bitcoin/master 5b93094 Ryan Ofsky: build: move chainparamsbase from util to common 14:13 < bitcoin-git> bitcoin/master cc5f29f Ryan Ofsky: build: move memory_cleanse from util to crypto 14:13 < bitcoin-git> [bitcoin] achow101 merged pull request #29015: kernel: Streamline util library (master...pr/rmutil) https://github.com/bitcoin/bitcoin/pull/29015 14:20 < bitcoin-git> bitcoin/master 0fcbfdb David Gumberg: Support running individual lint checks 14:20 < bitcoin-git> bitcoin/master ff21eb2 Ava Chow: Merge bitcoin/bitcoin#30219: Lint: Support running individual lint checks 14:20 < bitcoin-git> [bitcoin] achow101 pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/011a895a82df...ff21eb2def70 14:20 < bitcoin-git> [bitcoin] achow101 merged pull request #30219: Lint: Support running individual lint checks (master...individual_lints) https://github.com/bitcoin/bitcoin/pull/30219 14:30 -!- Chris_Stewart_5 [~Chris_Ste@68.235.43.80] has quit [Ping timeout: 264 seconds] 14:32 -!- Chris_Stewart_5 [~Chris_Ste@87.249.134.7] has joined #bitcoin-core-dev 14:40 -!- saffi [~saffi@user/saffi] has joined #bitcoin-core-dev 14:44 -!- saffi [~saffi@user/saffi] has quit [Client Quit] 14:44 -!- SpellChecker [~SpellChec@user/SpellChecker] has quit [Read error: Connection reset by peer] 14:44 -!- qxs [~qxs@gateway/tor-sasl/qxs] has quit [Read error: Connection reset by peer] 14:45 -!- SpellChecker [~SpellChec@user/SpellChecker] has joined #bitcoin-core-dev 14:46 -!- qxs [~qxs@gateway/tor-sasl/qxs] has joined #bitcoin-core-dev 14:56 -!- bugs_ [~bugs@user/bugs/x-5128603] has quit [Quit: Leaving] 15:06 -!- josie_ [~josibake@suhail.uberspace.de] has quit [Quit: ZNC 1.8.2 - https://znc.in] 15:07 -!- josie [~josibake@2a00:d0c0:200:3:ccd:dff:fec0:d062] has joined #bitcoin-core-dev 15:08 -!- preimage [~halosghos@user/halosghost] has quit [Quit: WeeChat 4.3.2] 15:12 -!- saffi48 [~saffi@user/saffi48] has joined #bitcoin-core-dev 15:13 -!- saffi48 [~saffi@user/saffi48] has quit [Quit: Leaving.] 15:20 -!- saffi48 [~saffi@user/saffi48] has joined #bitcoin-core-dev 15:30 -!- saffi48 [~saffi@user/saffi48] has left #bitcoin-core-dev [] 15:30 -!- saffi48 [~saffi@user/saffi48] has joined #bitcoin-core-dev 15:34 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 264 seconds] 15:40 -!- puchka [~puchka@185.203.122.201] has quit [Ping timeout: 264 seconds] 15:44 -!- saffi48 [~saffi@user/saffi48] has quit [Quit: Leaving.] 15:45 -!- puchka [~puchka@185.203.122.198] has joined #bitcoin-core-dev 15:48 -!- freesprung51269 [~freesprun@user/freesprung] has quit [Ping timeout: 260 seconds] 16:01 -!- bitdex [~bitdex@gateway/tor-sasl/bitdex] has joined #bitcoin-core-dev 16:03 -!- freesprung51269 [~freesprun@user/freesprung] has joined #bitcoin-core-dev 16:14 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 16:28 -!- zeropoint [~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net] has joined #bitcoin-core-dev 17:08 -!- zeropoint [~alex@45-28-139-114.lightspeed.sntcca.sbcglobal.net] has quit [Quit: leaving] 19:32 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 19:37 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 252 seconds] 19:39 -!- jarthur [~jarthur@user/jarthur] has joined #bitcoin-core-dev 20:33 -!- marsupialSoup [~marsupial@user/marsupialSoup] has joined #bitcoin-core-dev 20:38 -!- marsupialSoup [~marsupial@user/marsupialSoup] has quit [Ping timeout: 264 seconds] 21:01 -!- cmirror [~cmirror@4.53.92.114] has quit [Remote host closed the connection] 21:01 -!- cmirror [~cmirror@4.53.92.114] has joined #bitcoin-core-dev 21:04 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 21:06 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 268 seconds] 22:01 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 22:02 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 22:04 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 22:06 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 22:21 -!- hernanmarino [~hernanmar@181.85.44.52] has quit [Ping timeout: 268 seconds] 22:25 -!- jon_atack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 22:31 -!- hernanmarino [~hernanmar@181.85.44.52] has joined #bitcoin-core-dev 22:47 -!- jonatack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 23:02 -!- jon_atack [~jonatack@user/jonatack] has joined #bitcoin-core-dev 23:03 -!- jonatack [~jonatack@user/jonatack] has quit [Ping timeout: 264 seconds] 23:35 -!- pyth_ [~pyth@125.235.239.142] has joined #bitcoin-core-dev 23:38 -!- pyth [~pyth@125.235.239.142] has quit [Ping timeout: 264 seconds] 23:54 -!- robobub [uid248673@id-248673.uxbridge.irccloud.com] has joined #bitcoin-core-dev --- Log closed Thu Jun 13 00:00:23 2024