2024-10-24

<bitcoin-git> bitcoin/master 66c9936 furszy: bench: add coverage for wallet migration process
<bitcoin-git> bitcoin/master f2541d0 furszy: wallet: batch MigrateToDescriptor() db transactions
<bitcoin-git> bitcoin/master 6052c78 furszy: wallet: decouple default descriptors creation from external signer setup
<bitcoin-git> [bitcoin] achow101 pushed 13 commits to master: https://github.com/bitcoin/bitcoin/compare/dd92911732d4...c16e909b3e23
<BlueMatt[m]> <laanwj> "if that isn't important, and one..." <- I think it’s both: IMO it’s a useful hedge for Bitcoin if the mining protocol people use is trivially moved to running over the wire (with cryptographic authentication), but also that no one is going to use it in the short term- it might suddenly become important overnight at some point but it’s hopefully not soon.
<sipa> but also, this doesn't need to be set in stone, and the fact that it is making progress at all is far better than the opposite; the outcome could be miners/Sv2 stacks implementing this IPC mechanism directly; it could be a Sv2 sidecar binary built from and shipped with bitcoin core; it could even be something like that for some time, but eventually merged back directly
<sipa> gmaxwell: FWIW, my view is that whatever we end up with is something that gets tested as part of Bitcoin Core's release process
<bitcoin-git> [bitcoin] fanquake merged pull request #31148: ci: display logs of failed unit tests automatically (master...2024_ci_test_output) https://github.com/bitcoin/bitcoin/pull/31148
<bitcoin-git> bitcoin/master 8523d8c furszy: ci: display logs of failed tests automatically
<bitcoin-git> bitcoin/master dd92911 merge-script: Merge bitcoin/bitcoin#31148: ci: display logs of failed unit tests automat...
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/0c79c343a9f2...dd92911732d4
<gmaxwell> except a p2pkh address, etc. So why would people using one instead of writing their mining infrastrcture against the bitcoin core IPC, skipping a step, source of failures, source of latency?
<bitcoin-git> [bitcoin] maflcko opened pull request #31150: util: Treat Assume as Assert when evaluating at compile-time (master...2410-assume-stronger) https://github.com/bitcoin/bitcoin/pull/31150
<laanwj> we'd like to document it for people that want to use it in an inter-process way on the same machine but not use the bitcoin core tool, for some reason
<BlueMatt[m]> I also can't say I'm super jazzed about the entire bitcoin ecosystem having to support capnproto, but hey whatever, not really a huge deal (is it trivial to write a parser for it?)
<sipa> i would have preferred sv2 directly in bitcoin-core-the-bitcoind-binary, but i understand the objections many contributors have raised; i think for supporting the mining ecosystem, having an external binary/process that implements sv2 that speaks this IPC, and talks the well-defined Sv2 protocol, and is released-with, and tested-against every version for bitcoind
<laanwj> that's where Sv2 comes in, as a standard that goes beyond bitcoin core
<BlueMatt[m]> achow101: right, like i mentioned in the original wall of text, I didn't weigh in particularly on that decision because that's a bitcoin core decision, not mine. however, it sounds like now the interface intends to be something that is stable/maintained.
<gribble> https://github.com/bitcoin/bitcoin/issues/31109 | Mining Interface doesnt allow for Bitcoin Core to create blocks when it wants · Issue #31109 · bitcoin/bitcoin · GitHub
<sipa> BlueMatt[m]: my personal view is that i'd like a maintained sv2 implementation as part of the bitcoin core organization, and part of its releases, tested against bitcoin... whether or not that's built from the same codebase, whether or not that's written in the same language
<gribble> https://github.com/bitcoin/bitcoin/issues/31109 | Mining Interface doesnt allow for Bitcoin Core to create blocks when it wants · Issue #31109 · bitcoin/bitcoin · GitHub
<BlueMatt[m]> achow101: that's somewhat nonsensical - if bitcoin core is defining a new protocol for work provisioning, there's no reason to have a different one
<achow101> my recollection is that the sv2 stuff would still live under "Bitcoin Core" but not in the main repo
<gribble> https://github.com/bitcoin/bitcoin/issues/30955 | Mining interface: getCoinbaseMerklePath() and submitSolution() by Sjors · Pull Request #30955 · bitcoin/bitcoin · GitHub
<gribble> https://github.com/bitcoin/bitcoin/issues/30440 | Have createNewBlock() return a BlockTemplate interface by Sjors · Pull Request #30440 · bitcoin/bitcoin · GitHub
<gribble> https://github.com/bitcoin/bitcoin/issues/30200 | Introduce Mining interface by Sjors · Pull Request #30200 · bitcoin/bitcoin · GitHub
<BlueMatt[m]> Finally, it’s worth noting that getblocktemplate actually has a BIP, but for some reason this new work isn’t even standardized anywhere, which strikes me as strange given Bitcoin core will definitely not be the not server for this so we really can’t just say “the interface is what Bitcoin Core provides”.
<BlueMatt[m]> It seems that Bitcoin Core took a principled position that the remote-ability of this protocol doesn’t matter (which is a reasonable decision, the remote-ability of work-providing is a somewhat speculative feature, but one I think is worth having a decade down the line), but I’m not really sure why no one who’s spent time on mining work protocols was even consulted on such a major decision. Further, the fact that the one major
<BlueMatt[m]> The second goal you can not - if it’s less efficient coming out of Bitcoin Core, no amount of proxying is going to fix that.
<BlueMatt[m]> The first goal, of course, you can build with a proxy, though to do so now you're back to having to have two daemons to maintain and two protocols which is gonna limit adoption substantially. Ideally the protocol wouldn't be so trivially DoSable so that we can make it public by just using netcat or something which trivially wraps a local connection and provides cryptographic authentication (assuming Bitcoin Core doesn't provide that in
<BlueMatt[m]> The whole point of the Sv2 JD server stuff was (a) to be remote-able (TCP + cryptographically authenticated) and (b) to be "push-based" ie let Bitcoin Core decide when to create new block templates and let it immediately push templates when it wants to do so (possibly even before updating the mempool by predicting the next block's contents in advance or in a parallel thread that can run without cs_main). This new protocol is neither,
<BlueMatt[m]> So I’m really quite confused here, somehow we’ve ended up with Bitcoin Core NIHing a new work providing protocol, except without any of the features of the Sv2-defined one, which is borderline worse than getblocktemplate and where no one who works on mining stuff was consulted on the design of the new protocol.
<bitcoin-git> [bitcoin] stickies-v opened pull request #31149: tinyformat: enforce compile-time checks for format string literals (master...2024-10/remove-string-format-overload) https://github.com/bitcoin/bitcoin/pull/31149
<gribble> https://github.com/bitcoin/bitcoin/issues/30116 | p2p: Fill reconciliation sets (Erlay) attempt 2 by sr-gi · Pull Request #30116 · bitcoin/bitcoin · GitHub
<achow101> Anything to add or remove from https://github.com/orgs/bitcoin/projects/1/views/4
<gribble> https://github.com/bitcoin/bitcoin/issues/28710 | Remove the legacy wallet and BDB dependency by achow101 · Pull Request #28710 · bitcoin/bitcoin · GitHub
<gribble> https://github.com/bitcoin/bitcoin/issues/30328 | wallet: Remove IsMine from migration code by achow101 · Pull Request #30328 · bitcoin/bitcoin · GitHub
<gribble> https://github.com/bitcoin/bitcoin/issues/29675 | wallet: Be able to receive and spend inputs involving MuSig2 aggregate keys by achow101 · Pull Request #29675 · bitcoin/bitcoin · GitHub
<gribble> https://github.com/bitcoin/bitcoin/issues/31122 | cluster mempool: Implement changeset interface for mempool by sdaftuar · Pull Request #31122 · bitcoin/bitcoin · GitHub
<gribble> https://github.com/bitcoin/bitcoin/issues/30289 | Cluster mempool tracking issue · Issue #30289 · bitcoin/bitcoin · GitHub
<gribble> https://github.com/bitcoin/bitcoin/issues/30595 | kernel: Introduce initial C header API by TheCharlatan · Pull Request #30595 · bitcoin/bitcoin · GitHub
<BlueMatt[m]> I’d like to discuss sv2 and the new bitcoin core nih mining protocol.
<achow101> #bitcoin-core-dev Meeting: abubakarsadiq achow101 _aj_ ajonas b10c brunoerg cfields darosior dergoegge fanquake fjahr furszy gleb glozow hebasto instagibbs jarolrod jonatack josibake kanzure laanwj LarryRuane lightlike luke-jr maflcko maxedw Murch pinheadmz provoostenator ryanofsky sdaftuar S3RK stickies-v sipa sr_gi tdb3 theStack TheCharlatan vasild willcl-ark
<bitcoin-git> [bitcoin] furszy opened pull request #31148: ci: display logs of failed unit tests automatically (master...2024_ci_test_output) https://github.com/bitcoin/bitcoin/pull/31148
<bitcoin-git> [bitcoin] fanquake merged pull request #31147: cmake, qt, test: Remove problematic code (master...241024-qt-mip) https://github.com/bitcoin/bitcoin/pull/31147
<bitcoin-git> bitcoin/master 0c79c34 merge-script: Merge bitcoin/bitcoin#31147: cmake, qt, test: Remove problematic code
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/2f40e453ccdf...0c79c343a9f2
<bitcoin-git> bitcoin/master fb46d57 Hennadii Stepanov: cmake, qt, test: Remove problematic code
<bitcoin-git> [bitcoin] fanquake merged pull request #29450: build: replace custom `MAC_OSX` macro with existing `__APPLE__` (master...paplorinc/macos_to_apple_macros) https://github.com/bitcoin/bitcoin/pull/29450
<bitcoin-git> bitcoin/master 6c6b244 Lőrinc: build: Replace MAC_OSX macro with existing __APPLE__
<bitcoin-git> bitcoin/master 2f40e45 merge-script: Merge bitcoin/bitcoin#29450: build: replace custom `MAC_OSX` macro with ex...
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/d94adc7270ba...2f40e453ccdf
<bitcoin-git> [bitcoin] hebasto opened pull request #31147: cmake, qt, test: Remove problematic code (master...241024-qt-mip) https://github.com/bitcoin/bitcoin/pull/31147
<bitcoin-git> [bitcoin] maflcko opened pull request #31146: ci: Temporary workaround for old CCACHE_DIR cirrus env (master...2410-ci-temp) https://github.com/bitcoin/bitcoin/pull/31146
<bitcoin-git> [bitcoin] fanquake merged pull request #29702: fees: Remove CLIENT_VERSION serialization (master...2403-fees-) https://github.com/bitcoin/bitcoin/pull/29702
<bitcoin-git> bitcoin/master fa1c5cc MarcoFalke: fees: Log non-fatal errors as [warning], instead of info-level
<bitcoin-git> bitcoin/master ddddbac MarcoFalke: fees: Pin required version to 149900
<bitcoin-git> bitcoin/master fa5126a MarcoFalke: fees: Pin "version that wrote" to 0
<bitcoin-git> [bitcoin] fanquake pushed 4 commits to master: https://github.com/bitcoin/bitcoin/compare/7290bc61c00b...d94adc7270ba
<bitcoin-git> [bitcoin] fanquake merged pull request #31078: build: Fix kernel static lib component install (master...install_kernel_component) https://github.com/bitcoin/bitcoin/pull/31078
<bitcoin-git> bitcoin/master 7290bc6 merge-script: Merge bitcoin/bitcoin#31078: build: Fix kernel static lib component install
<bitcoin-git> bitcoin/master 82e16e6 Hennadii Stepanov: cmake: Refactor install kernel dependencies
<bitcoin-git> bitcoin/master 42e6277 TheCharlatan: build: Add static libraries to Kernel install component
<bitcoin-git> [bitcoin] fanquake pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/68f29b249070...7290bc61c00b
<bitcoin-git> [bitcoin] fanquake merged pull request #31141: doc: Make list of targets in depends README consistent (master...2024-10-depends-platforms) https://github.com/bitcoin/bitcoin/pull/31141
<bitcoin-git> bitcoin/master 68f29b2 merge-script: Merge bitcoin/bitcoin#31141: doc: Make list of targets in depends README c...
<bitcoin-git> bitcoin/master a0c9595 laanwj: doc: Make list of targets in depends README consistent
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/e9b95665eeab...68f29b249070
<bitcoin-git> [bitcoin] l0rinc opened pull request #31144: optimization: pack util::Xor into 64 bit chunks instead of doing it byte-by-byte (master...l0rinc/optimize-xor) https://github.com/bitcoin/bitcoin/pull/31144
<bitcoin-git> [bitcoin] cbradberry closed pull request #31143: Convert Bitcoin source code to C# (master...convert-bitcoin-to-csharp) https://github.com/bitcoin/bitcoin/pull/31143
<bitcoin-git> [bitcoin] cbradberry opened pull request #31143: Convert Bitcoin source code to C# (master...convert-bitcoin-to-csharp) https://github.com/bitcoin/bitcoin/pull/31143

2024-10-23

<bitcoin-git> [bitcoin] achow101 merged pull request #31046: init: Some small chainstate load improvements (master...chainstate_init_followup) https://github.com/bitcoin/bitcoin/pull/31046
<bitcoin-git> bitcoin/master baea842 stickies-v: init: Remove unneeded argument for mempool_opts checks
<bitcoin-git> bitcoin/master 720ce88 Martin Zumsande: init: Improve comment describing chainstate load retry behaviour
<bitcoin-git> bitcoin/master 635e9f8 TheCharlatan: init: Remove misleading log line when user chooses not to retry
<bitcoin-git> [bitcoin] achow101 pushed 7 commits to master: https://github.com/bitcoin/bitcoin/compare/b8c821cc1eab...e9b95665eeab
<bitcoin-git> [bitcoin] achow101 merged pull request #30724: test: add test for specifying custom pidfile via `-pid` (master...202408-test-add_custom_pidfile_test) https://github.com/bitcoin/bitcoin/pull/30724
<bitcoin-git> bitcoin/master b832ffe tdb3: refactor: introduce default pid file name constant in tests
<bitcoin-git> bitcoin/master 04e4d52 Sebastian Falbesoner: test: add test for specifying custom pidfile via `-pid`
<bitcoin-git> bitcoin/master b8c821c Ava Chow: Merge bitcoin/bitcoin#30724: test: add test for specifying custom pidfile ...
<bitcoin-git> [bitcoin] achow101 pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/ffe4261cb066...b8c821cc1eab
<gribble> https://github.com/bitcoin/bitcoin/issues/28251 | validation: fix coins disappearing mid-package evaluation by glozow · Pull Request #28251 · bitcoin/bitcoin · GitHub
<bitcoin-git> [bitcoin] danielabrozzoni closed pull request #31065: rest: Support transaction broadcast in REST interface (master...20241008_rest_broadcast) https://github.com/bitcoin/bitcoin/pull/31065
<sipa> is there anything else i need to do to make bitcoin core "find" the libmultiprocess, that you know?
<bitcoin-git> [bitcoin] mzumsande opened pull request #31142: test: fix intermittent failure in p2p_seednode.py, don't connect to random IPs (master...202410_seednode_error) https://github.com/bitcoin/bitcoin/pull/31142
<bitcoin-git> [bitcoin] laanwj opened pull request #31141: doc: Make list of targets in depends README consistent (master...2024-10-depends-platforms) https://github.com/bitcoin/bitcoin/pull/31141
<bitcoin-git> [bitcoin-detached-sigs] achow101 pushed tag v27.2rc1: https://github.com/bitcoin-core/bitcoin-detached-sigs/compare/v27.2rc1
<bitcoin-git> bitcoin-detached-sigs/27.x 7ec9bea Ava Chow: 27.2: win sig for rc1
<bitcoin-git> [bitcoin-detached-sigs] achow101 pushed 1 commit to 27.x: https://github.com/bitcoin-core/bitcoin-detached-sigs/compare/69c904a40a9e...7ec9bea373a4
<bitcoin-git> [bitcoin] kevkevinpal opened pull request #31139: test: added test to assert TX decode rpc error on submitpackage rpc (master...testSubmitPackageTxDecodeRpcError) https://github.com/bitcoin/bitcoin/pull/31139
<zzz123> am i able to be unbanned from the bitcoin-core github?
<zzz123> i can't fathom what the nsa has on bitcoin - or north korean/chinese/russian ic..
<bitcoin-git> bitcoin-detached-sigs/27.x 69c904a fanquake: 27.2: macOS sig for rc1
<bitcoin-git> [bitcoin-detached-sigs] fanquake pushed 1 commit to 27.x: https://github.com/bitcoin-core/bitcoin-detached-sigs/compare/c7f3cf7a0e3a...69c904a40a9e
<zzz123> i want bitcoin to be the global reserve currency but if i keep finding loads of dos exploits it isn't practical
<zzz123> the only thing suboptimal is the fact that pinging faster than you can pong crashes bitcoin on recommended spec machines

2024-10-22

<bitcoin-git> [bitcoin] jonatack opened pull request #31135: rpc, cli: return "verificationprogress" of 1 when up to date (master...2024-10-verification-progress) https://github.com/bitcoin/bitcoin/pull/31135
<bitcoin-git> [bitcoin] andrewtoth closed pull request #31102: Don't wipe coins cache when full and instead evict LRU clean entries (master...prune-cache) https://github.com/bitcoin/bitcoin/pull/31102
<gribble> https://github.com/bitcoin/bitcoin/issues/31133 | net: Tor service target port collides when running multiple nodes, making bitcoind error out · Issue #31133 · bitcoin/bitcoin · GitHub
<bitcoin-git> [bitcoin] fanquake pushed tag v27.2rc1: https://github.com/bitcoin/bitcoin/compare/v27.2rc1
<bitcoin-git> [bitcoin] fanquake merged pull request #31101: [27.x] Prep for 27.2 (27.x...27_2_rc1) https://github.com/bitcoin/bitcoin/pull/31101
<bitcoin-git> bitcoin/27.x 0cdfb7e fanquake: doc: update for 27.2rc1
<bitcoin-git> [bitcoin] fanquake pushed 4 commits to 27.x: https://github.com/bitcoin/bitcoin/compare/84df30927a49...882e0d730d6d
<bitcoin-git> bitcoin/27.x 693403b fanquake: doc: update manual pages for 27.2rc1
<bitcoin-git> bitcoin/27.x c338e43 fanquake: build: bump version to 27.2rc1
<bitcoin-git> [bitcoin] fanquake merged pull request #30935: ci: Approximate MAKEJOBS in image build phase (master...2409-ci-cpu) https://github.com/bitcoin/bitcoin/pull/30935
<bitcoin-git> bitcoin/master fa71bed MarcoFalke: ci: Approximate MAKEJOBS in image build phase
<bitcoin-git> bitcoin/master ffe4261 merge-script: Merge bitcoin/bitcoin#30935: ci: Approximate MAKEJOBS in image build phase
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/28ce159bc327...ffe4261cb066
<bitcoin-git> [bitcoin] andrewtoth opened pull request #31132: validation: fetch block inputs parallel threads ~17% faster IBD (master...threaded-inputs) https://github.com/bitcoin/bitcoin/pull/31132
<bitcoin-git> [qa-assets] brunoerg closed pull request #209: add inputs for spkm_migration target (main...2024-10-spkm-migration) https://github.com/bitcoin-core/qa-assets/pull/209
<bitcoin-git> [qa-assets] brunoerg opened pull request #209: add inputs for spkm_migration target (main...2024-10-spkm-migration) https://github.com/bitcoin-core/qa-assets/pull/209
<bitcoin-git> [bitcoin] darosior opened pull request #31130: Drop miniupnp dependency (master...2410_drop_upnp) https://github.com/bitcoin/bitcoin/pull/31130
<bitcoin-git> [bitcoin] fanquake merged pull request #30183: rpc: net: follow-ups for #30062 (master...2024-05-followup-30062) https://github.com/bitcoin/bitcoin/pull/30183
<bitcoin-git> bitcoin/master bdad024 brunoerg: rpc, net: getrawaddrman "mapped_as" follow-ups
<bitcoin-git> bitcoin/master a16917f brunoerg: rpc, net: improve `mapped_as` doc for getrawaddrman/getpeerinfo
<bitcoin-git> bitcoin/master 28ce159 merge-script: Merge bitcoin/bitcoin#30183: rpc: net: follow-ups for #30062
<bitcoin-git> [bitcoin] fanquake pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/684873931b39...28ce159bc327
<bitcoin-git> [bitcoin] Jessiejaymz810s closed pull request #31128: Pending changes exported from your codespace (master...codespace-studious-train-xjj599jwjjvc6g99) https://github.com/bitcoin/bitcoin/pull/31128
<bitcoin-git> [bitcoin] Jessiejaymz810s opened pull request #31128: Pending changes exported from your codespace (master...codespace-studious-train-xjj599jwjjvc6g99) https://github.com/bitcoin/bitcoin/pull/31128

2024-10-21

<bitcoin-git> [bitcoin] fanquake closed pull request #31126: Update README.md to Format Header Correctly (master...patch-1) https://github.com/bitcoin/bitcoin/pull/31126
<bitcoin-git> [bitcoin] COPILOT-WEB-ui opened pull request #31126: Update README.md to Format Header Correctly (master...patch-1) https://github.com/bitcoin/bitcoin/pull/31126
<blackhat1337> hood with bitcoin dos. otherwise they'd be patched. idiots.
<padillac> so here's the deal - patch the exploit or archive the repo. until uptime (remote orphan witchcraft) is solved, if it can be in the face of massive botnets - bitcoin can never, ever - ever - be a global reserve asset. it isn't bulletproof whatsoever. people are fucking religious about exploitable software and assume it's a magical thing when it's
<padillac> bitcoin-core/blockstream is probably mad because i've been a dick to them like 12 times
<bitcoin-git> [bitcoin] fanquake opened pull request #31125: depends: add *FLAGS to gen_id (master...external_flags_plus_linker_cache) https://github.com/bitcoin/bitcoin/pull/31125
<bitcoin-git> [bitcoin] fanquake merged pull request #26334: Add Signet and testnet4 launch shortcuts for Windows (master...2022/10/windows-signet) https://github.com/bitcoin/bitcoin/pull/26334
<bitcoin-git> bitcoin/master 77b2923 Sjors Provoost: Add Signet launch shortcut for Windows
<bitcoin-git> bitcoin/master cfd03de Sjors Provoost: Add Testnet4 launch shortcut for Windows
<bitcoin-git> bitcoin/master 6848739 merge-script: Merge bitcoin/bitcoin#26334: Add Signet and testnet4 launch shortcuts for ...
<bitcoin-git> [bitcoin] fanquake pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/9b0e25980895...684873931b39
<bitcoin-git> [bitcoin] fanquake merged pull request #31121: guix: Enable CET for `glibc` package (master...cet_enabled) https://github.com/bitcoin/bitcoin/pull/31121
<bitcoin-git> bitcoin/master 9b0e259 merge-script: Merge bitcoin/bitcoin#31121: guix: Enable CET for `glibc` package
<bitcoin-git> bitcoin/master 4d3da08 Hennadii Stepanov: guix: Enable CET for `glibc` package
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/d9f8dc645343...9b0e25980895
<bitcoin-git> [bitcoin] fanquake merged pull request #31097: validation: Improve input script check error reporting (master...2024-10-check2) https://github.com/bitcoin/bitcoin/pull/31097
<bitcoin-git> bitcoin/master 86e2a6b Antoine Poinsot: [test] A non-standard transaction which is also consensus-invalid should r...
<bitcoin-git> bitcoin/master d9f8dc6 merge-script: Merge bitcoin/bitcoin#31097: validation: Improve input script check error ...
<bitcoin-git> bitcoin/master f859ff8 dergoegge: [validation] Improve script check error reporting
<bitcoin-git> [bitcoin] fanquake pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/563c4d292687...d9f8dc645343
<sdaftuar> specifically in https://corecheck.dev/bitcoin/bitcoin/pulls/31122, it reports MempoolEviction has slowed down, but for me I see no significant difference running on master versus my branch
<gribble> https://github.com/bitcoin/bitcoin/issues/31122 | cluster mempool: Implement changeset interface for mempool by sdaftuar · Pull Request #31122 · bitcoin/bitcoin · GitHub
<bitcoin-git> [bitcoin] hodlinator opened pull request #31124: util: Remove RandAddSeedPerfmon (master...2024/10/rm_RandAddSeedPerfmon) https://github.com/bitcoin/bitcoin/pull/31124
<bitcoin-git> [bitcoin] fanquake closed pull request #30905: cmake: Switch to crc32c upstream build system (master...240914-crc32c) https://github.com/bitcoin/bitcoin/pull/30905
<bitcoin-git> [bitcoin] fanquake merged pull request #31105: Update libmultiprocess library (master...pr/mpcrash) https://github.com/bitcoin/bitcoin/pull/31105
<bitcoin-git> bitcoin/master 90b4055 Ryan Ofsky: Update libmultiprocess library
<bitcoin-git> bitcoin/master 563c4d2 merge-script: Merge bitcoin/bitcoin#31105: Update libmultiprocess library
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/0e9f20625a18...563c4d292687
<bitcoin-git> [bitcoin] fanquake merged pull request #31063: lint: commit-script-check.sh: echo to stderr (master...2410-lint-echo-stderr) https://github.com/bitcoin/bitcoin/pull/31063
<bitcoin-git> bitcoin/master fac6cfe MarcoFalke: lint: commit-script-check.sh: echo to stderr
<bitcoin-git> bitcoin/master 0e9f206 merge-script: Merge bitcoin/bitcoin#31063: lint: commit-script-check.sh: echo to stderr
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/e8f72aefd200...0e9f20625a18
<bitcoin-git> [bitcoin] sdaftuar closed pull request #29427: Add imbued v3 based on template-matching (master...2024-02-imbued-v3) https://github.com/bitcoin/bitcoin/pull/29427

2024-10-20

<bitcoin-git> [bitcoin] sdaftuar opened pull request #31122: cluster mempool: Implement changeset interface for mempool (master...2024-10-mempool-changeset) https://github.com/bitcoin/bitcoin/pull/31122
<bitcoin-git> [bitcoin] fanquake opened pull request #31121: guix: Enable CET for `glibc` package (master...cet_enabled) https://github.com/bitcoin/bitcoin/pull/31121

2024-10-19

<bitcoin-git> [bitcoin] achow101 closed pull request #31114: Simple security.doc improvement (28.x...28.x) https://github.com/bitcoin/bitcoin/pull/31114
<bitcoin-git> [bitcoin] l0rinc opened pull request #31118: doc: replace `-?` with `-h` for bench_bitcoin help (master...l0rinc/bench-help) https://github.com/bitcoin/bitcoin/pull/31118
<bitcoin-git> [bitcoin] fjahr opened pull request #31117: miner: Reorg Testnet4 minimum difficulty blocks (master...2024-10-t4-reorg-miner) https://github.com/bitcoin/bitcoin/pull/31117

2024-10-18

<bitcoin-git> [bitcoin] toogoodtofail opened pull request #31114: Simple security.doc improvement (28.x...28.x) https://github.com/bitcoin/bitcoin/pull/31114
<bitcoin-git> [bitcoin] sipa opened pull request #31112: Improve parallel script validation error debug logging (master...202410_parcheck_debug) https://github.com/bitcoin/bitcoin/pull/31112
<gribble> https://github.com/bitcoin/bitcoin/issues/22729 | Make it possible to disable Tor binds and abort startup on bind failure by vasild · Pull Request #22729 · bitcoin/bitcoin · GitHub

2024-10-17

<bitcoin-git> [bitcoin] fanquake merged pull request #29877: tracing: explicitly cast block_connected duration to nanoseconds (master...2024-04-tracing-cast-duration-to-µs) https://github.com/bitcoin/bitcoin/pull/29877
<bitcoin-git> bitcoin/master cd0edf2 0xb10c: tracing: cast block_connected duration to nanoseconds
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/a38603456e9a...e8f72aefd200
<bitcoin-git> bitcoin/master e8f72ae merge-script: Merge bitcoin/bitcoin#29877: tracing: explicitly cast block_connected dura...
<bitcoin-git> [bitcoin] fanquake merged pull request #31100: doc: remove dependency install instructions from win docs (master...drop_win_docs) https://github.com/bitcoin/bitcoin/pull/31100
<bitcoin-git> bitcoin/master 184f12c fanquake: doc: remove dependency install instructions from win docs
<bitcoin-git> bitcoin/master a386034 merge-script: Merge bitcoin/bitcoin#31100: doc: remove dependency install instructions f...
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/479715e9db03...a38603456e9a
<bitcoin-git> [bitcoin] fanquake closed pull request #28939: memusage: let PoolResource keep track of all allocated/deallocated memory (master...2023-11-more-accurate-pool-memory) https://github.com/bitcoin/bitcoin/pull/28939

2024-10-16

<bitcoin-git> [bitcoin] ryanofsky opened pull request #31105: Update libmultiprocess library (master...pr/mpcrash) https://github.com/bitcoin/bitcoin/pull/31105
<bitcoin-git> [bitcoin] fanquake merged pull request #30996: doc: update signet documentation related to build directories (master...2024-09-28-docs) https://github.com/bitcoin/bitcoin/pull/30996
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/99e041f86fde...479715e9db03
<bitcoin-git> bitcoin/master a647d44 Torkel Rogstad: doc: update signet documentation related to build directories
<bitcoin-git> bitcoin/master 479715e merge-script: Merge bitcoin/bitcoin#30996: doc: update signet documentation related to b...
<bitcoin-git> [bitcoin] fanquake opened pull request #31104: [28.x] Some backports (28.x...28_some_backports) https://github.com/bitcoin/bitcoin/pull/31104
<bitcoin-git> [bitcoin] andrewtoth opened pull request #31102: Don't wipe coins cache when full and instead evict LRU clean entries (master...prune-cache) https://github.com/bitcoin/bitcoin/pull/31102
<bitcoin-git> [bitcoin] fanquake closed pull request #30685: build: Mark `x86_64-linux-gnu` release binaries as CET-enabled (master...240820-control-flow) https://github.com/bitcoin/bitcoin/pull/30685
<bitcoin-git> [bitcoin] fanquake opened pull request #31101: [27.x] Prep for 27.2 (27.x...27_2_rc1) https://github.com/bitcoin/bitcoin/pull/31101
<bitcoin-git> [bitcoin] fanquake merged pull request #31099: doc: drop macOS LLVM install instructions (master...mac_doc_fixup) https://github.com/bitcoin/bitcoin/pull/31099
<bitcoin-git> bitcoin/master 79aa828 fanquake: doc: drop LLVM install instructions
<bitcoin-git> bitcoin/master 99e041f merge-script: Merge bitcoin/bitcoin#31099: doc: drop macOS LLVM install instructions
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/21e2f06a1cc3...99e041f86fde
<bitcoin-git> [bitcoin] fanquake merged pull request #31067: test: Print CompletedProcess object on error (master...2410-test-print-err) https://github.com/bitcoin/bitcoin/pull/31067
<bitcoin-git> bitcoin/master fa43c4f MarcoFalke: test: Print CompletedProcess object on error
<bitcoin-git> bitcoin/master 21e2f06 merge-script: Merge bitcoin/bitcoin#31067: test: Print CompletedProcess object on error
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/dea9fb9a8b8f...21e2f06a1cc3
<bitcoin-git> [bitcoin] fanquake opened pull request #31100: doc: remove dependency install instructions from win docs (master...drop_win_docs) https://github.com/bitcoin/bitcoin/pull/31100
<bitcoin-git> [bitcoin] fanquake opened pull request #31099: doc: drop macOS LLVM install instructions (master...mac_doc_fixup) https://github.com/bitcoin/bitcoin/pull/31099
<bitcoin-git> [bitcoin] achow101 merged pull request #30093: optimization: reserve memory allocation for transaction inputs/outputs (master...paplorinc/spend_preallocation) https://github.com/bitcoin/bitcoin/pull/30093
<bitcoin-git> bitcoin/master dea9fb9 Ava Chow: Merge bitcoin/bitcoin#30093: optimization: reserve memory allocation for t...
<bitcoin-git> bitcoin/master ec585f1 Lőrinc: Reserve space for transaction inputs in CreateTransactionInternal
<bitcoin-git> bitcoin/master c76aaaf Lőrinc: Reserve space for transaction outputs in CreateTransactionInternal
<bitcoin-git> [bitcoin] achow101 pushed 3 commits to master: https://github.com/bitcoin/bitcoin/compare/2123c94448ed...dea9fb9a8b8f
<bitcoin-git> [bitcoin] Sjors closed pull request #29432: Stratum v2 Template Provider (take 3) (master...sv2) https://github.com/bitcoin/bitcoin/pull/29432
<bitcoin-git> [bitcoin] achow101 merged pull request #30527: Bump python minimum supported version to 3.10 (master...2407-py) https://github.com/bitcoin/bitcoin/pull/30527
<bitcoin-git> [bitcoin] achow101 pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/538ccaed004f...2123c94448ed
<bitcoin-git> bitcoin/master fa1b139 MarcoFalke: Bump python minimum supported version to 3.10
<bitcoin-git> bitcoin/master 2123c94 Ava Chow: Merge bitcoin/bitcoin#30527: Bump python minimum supported version to 3.10
<bitcoin-git> [bitcoin] Sjors closed pull request #29295: CKey: add Serialize and Unserialize (master...2024/01/ckey_unserialize) https://github.com/bitcoin/bitcoin/pull/29295
<bitcoin-git> [bitcoin] Sjors reopened pull request #30487: ci: skip Github CI on branch pushes for forks (master...2024/07/ci-fork-github) https://github.com/bitcoin/bitcoin/pull/30487
<bitcoin-git> [bitcoin] fanquake merged pull request #31048: build: Bump minimum supported macOS to 13.0 (master...241007-macos) https://github.com/bitcoin/bitcoin/pull/31048
<bitcoin-git> bitcoin/master a0e089a Hennadii Stepanov: build: Bump minimum supported macOS to 13.0
<bitcoin-git> bitcoin/master 538ccae merge-script: Merge bitcoin/bitcoin#31048: build: Bump minimum supported macOS to 13.0
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/0ca1d1bf69ca...538ccaed004f
<bitcoin-git> [bitcoin] dergoegge opened pull request #31097: validation: Improve input script check error reporting (master...2024-10-check2) https://github.com/bitcoin/bitcoin/pull/31097
<bitcoin-git> [bitcoin] instagibbs opened pull request #31096: Package validation: accept packages of size 1 (master...2024-10-submitpackage-singleton) https://github.com/bitcoin/bitcoin/pull/31096
<bitcoin-git> [bitcoin] Sjors closed pull request #30315: Stratum v2 Transport (master...2024/06/sv2_transport) https://github.com/bitcoin/bitcoin/pull/30315
<bitcoin-git> [bitcoin] Sjors closed pull request #29346: Stratum v2 Noise Protocol (master...2024/01/sv2_noise) https://github.com/bitcoin/bitcoin/pull/29346
<bitcoin-git> [bitcoin] Sjors closed pull request #30487: ci: skip Github CI on branch pushes for forks (master...2024/07/ci-fork-github) https://github.com/bitcoin/bitcoin/pull/30487

2024-10-15

<bitcoin-git> [bitcoin] achow101 closed pull request #28217: set `DEFAULT_PERMIT_BAREMULTISIG` to false (master...Permitbaremultisig) https://github.com/bitcoin/bitcoin/pull/28217
<bitcoin-git> [bitcoin] jasonandjay closed pull request #30023: doc: add dustThreshold explain of P2SH & P2TR (master...dustThreshold-P2SH) https://github.com/bitcoin/bitcoin/pull/30023
<bitcoin-git> [bitcoin] achow101 closed pull request #30232: refactor: policy: Pass kernel::MemPoolOptions to IsStandard[Tx] rather than long list of individual options (master...refactor_mempoolopts) https://github.com/bitcoin/bitcoin/pull/30232
<bitcoin-git> [bitcoin] l0rinc closed pull request #31089: CI: Add label to scripted-diffs (master...l0rinc/scripted-diff) https://github.com/bitcoin/bitcoin/pull/31089
<bitcoin-git> [bitcoin] achow101 closed pull request #29520: add `-limitdummyscriptdatasize` option (master...relayinscription) https://github.com/bitcoin/bitcoin/pull/29520
<bitcoin-git> [bitcoin] achow101 closed pull request #29942: Remove redundant `-datacarrier` option (master...remove-datacarrier) https://github.com/bitcoin/bitcoin/pull/29942
<bitcoin-git> [bitcoin] achow101 closed pull request #29614: BufferedFile: fclose at destruction (master...bufferedfile_fclose) https://github.com/bitcoin/bitcoin/pull/29614
<bitcoin-git> [bitcoin] achow101 closed pull request #29748: test: Makes `wait_for_getdata` delete data on checks, plus allows to check the getdata message type (master...202403-waitforgetdata-cleanup) https://github.com/bitcoin/bitcoin/pull/29748
<bitcoin-git> [bitcoin] achow101 closed pull request #22693: RPC/Wallet: Add "use_txids" to output of getaddressinfo (master...getaddressinfo_txids) https://github.com/bitcoin/bitcoin/pull/22693
<bitcoin-git> [bitcoin] achow101 closed pull request #30717: rpc: Add test-only RPCs under `-test=option` flag (master...feat-refactor_test_only_rpcs) https://github.com/bitcoin/bitcoin/pull/30717
<bitcoin-git> [bitcoin] achow101 closed pull request #27427: validation: Replace MinBIP9WarningHeight with MinBIP9WarningStartTime (master...validation-replace-min-bip9-height-to-min-bip9-start-time) https://github.com/bitcoin/bitcoin/pull/27427
<bitcoin-git> [gui] achow101 closed pull request #733: Deniability - a tool to automatically improve coin ownership privacy (master...deniability) https://github.com/bitcoin-core/gui/pull/733
<bitcoin-git> [bitcoin] achow101 closed pull request #27792: wallet: Deniability API (Unilateral Transaction Meta-Privacy) (master...deniability-api) https://github.com/bitcoin/bitcoin/pull/27792
<bitcoin-git> [bitcoin] achow101 closed pull request #30338: RFC: Instanced logs (master...instance-log3) https://github.com/bitcoin/bitcoin/pull/30338
<bitcoin-git> [bitcoin] achow101 closed pull request #27331: refactor: extract CCheckQueue's data handling into a separate container "Bag" (master...2023-03-bag) https://github.com/bitcoin/bitcoin/pull/27331
<bitcoin-git> [bitcoin-maintainer-tools] fanquake merged pull request #168: delete_nonreduced_fuzz_inputs: cmake (main...2024-08-fuzz-cmake) https://github.com/bitcoin-core/bitcoin-maintainer-tools/pull/168
<bitcoin-git> bitcoin-maintainer-tools/main 80434c9 dergoegge: delete_nonreduced_fuzz_inputs: switch to cmake
<bitcoin-git> bitcoin-maintainer-tools/main c9f9de1 dergoegge: delete_nonreduced_fuzz_inputs: rename to fuzz_corpora
<bitcoin-git> bitcoin-maintainer-tools/main d49cea0 merge-script: Merge bitcoin-core/bitcoin-maintainer-tools#168: delete_nonreduced_fuzz_in...
<bitcoin-git> [bitcoin-maintainer-tools] fanquake pushed 3 commits to main: https://github.com/bitcoin-core/bitcoin-maintainer-tools/compare/e1c91d39b947...d49cea01382e
<bitcoin-git> [bitcoin] dergoegge opened pull request #31093: Introduce `g_fuzzing` global for fuzzing checks (master...2024-10-g_fuzz) https://github.com/bitcoin/bitcoin/pull/31093
<bitcoin-git> [bitcoin] fanquake merged pull request #31092: doc: fuzz: remove Honggfuzz NetDriver instructions (master...2024-10-fuzz-remove-netdriver) https://github.com/bitcoin/bitcoin/pull/31092
<bitcoin-git> bitcoin/master 0ca1d1b merge-script: Merge bitcoin/bitcoin#31092: doc: fuzz: remove Honggfuzz NetDriver instruc...
<bitcoin-git> bitcoin/master d823ba6 brunoerg: doc: fuzz: remove Honggfuzz NetDriver instructions
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/15563d3388ef...0ca1d1bf69ca
<bitcoin-git> [bitcoin] fanquake closed pull request #25391: guix: Use LTO to build releases (master...lto_in_guix) https://github.com/bitcoin/bitcoin/pull/25391
<bitcoin-git> [bitcoin] brunoerg closed pull request #31012: net: fuzz: bypass network magic and checksum validation (master...2024-09-fuzz-netdriver) https://github.com/bitcoin/bitcoin/pull/31012
<bitcoin-git> [bitcoin] brunoerg opened pull request #31092: doc: fuzz: remove Honggfuzz NetDriver instructions (master...2024-10-fuzz-remove-netdriver) https://github.com/bitcoin/bitcoin/pull/31092
<bitcoin-git> [bitcoin] instagibbs closed pull request #31091: rpc: Disallow non-matching transactions in combinerawtransaction (master...2024-10-non_matching_combineraw) https://github.com/bitcoin/bitcoin/pull/31091
<bitcoin-git> [bitcoin] fanquake merged pull request #30859: doc: cmake: prepend "build" to functional/test_runner.py (master...2024-09-cmake-build-functional) https://github.com/bitcoin/bitcoin/pull/30859
<bitcoin-git> bitcoin/master 15563d3 merge-script: Merge bitcoin/bitcoin#30859: doc: cmake: prepend "build" to functional/tes...
<bitcoin-git> bitcoin/master e64b2f1 Larry Ruane: doc: cmake: prepend and explain "build/" where needed
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/2ac5ba24bf09...15563d3388ef
<bitcoin-git> [bitcoin] instagibbs opened pull request #31091: rpc: Disallow non-matching transactions in combinerawtransaction (master...2024-10-non_matching_combineraw) https://github.com/bitcoin/bitcoin/pull/31091
<bitcoin-git> [bitcoin] fanquake merged pull request #31083: doc: add doxygen for m_args in tests (master...doc-m-args-test-code) https://github.com/bitcoin/bitcoin/pull/31083
<bitcoin-git> bitcoin/master 1fe1b3b willcl-ark: doc: doxygen comment for m_args usage in tests
<bitcoin-git> bitcoin/master 2ac5ba2 merge-script: Merge bitcoin/bitcoin#31083: doc: add doxygen for m_args in tests
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/48cf3da63608...2ac5ba24bf09
<bitcoin-git> [packaging] EndrII reopened pull request #251: snap: update requirements of Bitcoin Core 28.0 (main...master) https://github.com/bitcoin-core/packaging/pull/251
<bitcoin-git> [packaging] EndrII closed pull request #251: snap: update requirements of Bitcoin Core 28.0 (main...master) https://github.com/bitcoin-core/packaging/pull/251
<bitcoin-git> [packaging] EndrII opened pull request #251: snap: update requirements of Bitcoin Core 28.0 (main...master) https://github.com/bitcoin-core/packaging/pull/251
<bitcoin-git> [bitcoin] l0rinc opened pull request #31089: CI: Add label to scripted-diffs (master...l0rinc/scripted-diff) https://github.com/bitcoin/bitcoin/pull/31089

2024-10-14

<bitcoin-git> [bitcoin] Av32000 closed pull request #31084: doc: Add xz-utils to the general dependencies for windows build (master...doc-windows-build-fix) https://github.com/bitcoin/bitcoin/pull/31084
<bitcoin-git> [gui-qml] D33r-Gee closed pull request #408: Wiring for Custom Datadir (main...qml-datadir-custom-wiring) https://github.com/bitcoin-core/gui-qml/pull/408
<sipa> coredev kill/shill issues going on, there will be lots of bitcoin-git activity here...
<bitcoin-git> [bitcoin] cdecker opened pull request #31086: chainparams: Re-add seed.bitcoinstats.com (master...202442-re-add-bitcoinstats-seed) https://github.com/bitcoin/bitcoin/pull/31086
<bitcoin-git> [gui-qml] hebasto merged pull request #425: build: Add missed icon file to resources (main...241012-ci-macos) https://github.com/bitcoin-core/gui-qml/pull/425
<bitcoin-git> gui-qml/main 6138805 Hennadii Stepanov: qml: Add missed icon file to resources
<bitcoin-git> gui-qml/main 88ce525 Hennadii Stepanov: Merge bitcoin-core/gui-qml#425: build: Add missed icon file to resources
<bitcoin-git> [gui-qml] hebasto pushed 2 commits to main: https://github.com/bitcoin-core/gui-qml/compare/7b056a0f7eac...88ce5253a4a3

2024-10-13

<bitcoin-git> [bitcoin] brunoerg closed pull request #28869: contrib: add test for bucketing with asmap (master...2023-11-asmap-stress) https://github.com/bitcoin/bitcoin/pull/28869
<bitcoin-git> [bitcoin] Av32000 opened pull request #31084: doc: Add xz-utils to the general dependencies for windows build (master...doc-windows-build-fix) https://github.com/bitcoin/bitcoin/pull/31084
<bitcoin-git> [bitcoin] furszy closed pull request #30385: [WIP] p2p: send not_found msgs for unknown, pruned or unwilling to share blocks (master...2024_p2p_notfound_block_v2) https://github.com/bitcoin/bitcoin/pull/30385
<bitcoin-git> [bitcoin] willcl-ark opened pull request #31083: doc: add doxygen for m_args in tests (master...doc-m-args-test-code) https://github.com/bitcoin/bitcoin/pull/31083

2024-10-12

<bitcoin-git> [bitcoin] willcl-ark opened pull request #31080: fees: document non-monotonic estimation edge case (master...doc-fee-inconsistency) https://github.com/bitcoin/bitcoin/pull/31080
<bitcoin-git> [bitcoin] TheCharlatan opened pull request #31078: build: Fix kernel static lib component install (master...install_kernel_component) https://github.com/bitcoin/bitcoin/pull/31078
<bitcoin-git> [gui-qml] hebasto opened pull request #425: Add missed icon file to resources (main...241012-ci-macos) https://github.com/bitcoin-core/gui-qml/pull/425
<bitcoin-git> [bitcoin] ryanofsky closed pull request #31074: util: Check bilingual_str format strings at compile time (master...pr/bicheck) https://github.com/bitcoin/bitcoin/pull/31074

2024-10-11

<bitcoin-git> [bitcoin] ryanofsky opened pull request #31074: util: Check bilingual_str format strings at compile time (master...pr/bicheck) https://github.com/bitcoin/bitcoin/pull/31074
<bitcoin-git> [gui-qml] D33r-Gee opened pull request #424: [DRAFT] WIP QML Load Snapshot Signet (main...qml-load-snapshot-signet) https://github.com/bitcoin-core/gui-qml/pull/424
<bitcoin-git> [bitcoin] dergoegge opened pull request #31073: ci: Split out native fuzz jobs for macOS and windows (master...2024-10-native-fuzz) https://github.com/bitcoin/bitcoin/pull/31073
<bitcoin-git> [bitcoin] fanquake merged pull request #30970: build: Add missing USDT header dependency to kernel (master...fix-kernel-no-usdt) https://github.com/bitcoin/bitcoin/pull/30970
<bitcoin-git> bitcoin/master 48cf3da merge-script: Merge bitcoin/bitcoin#30970: build: Add missing USDT header dependency to ...
<bitcoin-git> bitcoin/master ccd10fd Cory Fields: build: Add missing USDT header dependency to kernel
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/d8b835cf18ce...48cf3da63608
<bitcoin-git> [bitcoin] ryanofsky opened pull request #31072: scripted-diff: Replace strprintf(Untranslated(...)) with Untranslated(strprintf(...)) (master...pr/bfmt) https://github.com/bitcoin/bitcoin/pull/31072
<bitcoin-git> [bitcoin] fanquake merged pull request #31070: contrib: fix typos in check-deps.sh (master...patch-2) https://github.com/bitcoin/bitcoin/pull/31070
<bitcoin-git> bitcoin/master da8824b omahs: Fix typos in check-deps.sh
<bitcoin-git> bitcoin/master d8b835c merge-script: Merge bitcoin/bitcoin#31070: contrib: fix typos in check-deps.sh
<bitcoin-git> [bitcoin] fanquake pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/489e5aa3a299...d8b835cf18ce
<bitcoin-git> [bitcoin] omahs opened pull request #31070: Fix typos in check-deps.sh (master...patch-2) https://github.com/bitcoin/bitcoin/pull/31070

2024-10-10

<gribble`> https://github.com/bitcoin/bitcoin/issues/29675 | wallet: Be able to receive and spend inputs involving MuSig2 aggregate keys by achow101 · Pull Request #29675 · bitcoin/bitcoin · GitHub
<achow101> /home/ava/bitcoin/bitcoin/musig2/src/pubkey.h:12:10: fatal error: secp256k1_musig.h: No such file or directory
<bitcoin-git> [bitcoin] maflcko opened pull request #31067: test: Print CompletedProcess object on error (master...2410-test-print-err) https://github.com/bitcoin/bitcoin/pull/31067
<vasild> see "## 3. Manually create a Bitcoin Core onion service" in doc/tor.md
<bitcoin-git> [bitcoin] glozow merged pull request #30857: cluster mempool: extend DepGraph functionality (master...202409_clusterlin_partialdep) https://github.com/bitcoin/bitcoin/pull/30857
<bitcoin-git> bitcoin/master eaab55f Pieter Wuille: clusterlin: rework DepGraphFormatter::Unser
<bitcoin-git> bitcoin/master abf5064 Pieter Wuille: clusterlin: simplify DepGraphFormatter::Ser
<bitcoin-git> bitcoin/master 5901cf7 Pieter Wuille: clusterlin: abstract out DepGraph::GetReduced{Parents,Children}
<bitcoin-git> [bitcoin] glozow pushed 8 commits to master: https://github.com/bitcoin/bitcoin/compare/9f45062b9b06...489e5aa3a299
<bitcoin-git> [bitcoin] danielabrozzoni opened pull request #31065: rest: Support transaction broadcast in REST interface (master...20241008_rest_broadcast) https://github.com/bitcoin/bitcoin/pull/31065
<bitcoin-git> qa-assets/main 2e546ed maflcko: Merge pull request #208 from murchandamus/2024-10-07-add-murchs-october-in...
<bitcoin-git> [qa-assets] maflcko pushed 2 commits to main: https://github.com/bitcoin-core/qa-assets/compare/84cea7068728...2e546edde267
<bitcoin-git> qa-assets/main 1ace70e Murch: Add Murch’s October input harvest
<bitcoin-git> [qa-assets] maflcko merged pull request #208: Add Murch’s inputs (main...2024-10-07-add-murchs-october-inputs) https://github.com/bitcoin-core/qa-assets/pull/208
<achow101_> Anything to add or remove from https://github.com/orgs/bitcoin/projects/1/views/4
<achow101_> #bitcoin-core-dev Meeting: achow101 _aj_ amiti ariard aureleoules b10c BlueMatt brunoerg cfields darosior dergoegge dongcarl fanquake fjahr furszy gleb glozow hebasto instagibbs jamesob jarolrod jonatack josibake kallewoof kanzure kouloumos kvaciral laanwj LarryRuane lightlike luke-jr MacroFake Murch phantomcircuit pinheadmz promag provoostenator ryanofsky sdaftuar S3RK stickies-v sipa sr_gi theStack TheCharlatan vasild