<bitcoin-git>
[bitcoin] instagibbs opened pull request #28997: fuzz: txorphan check wtxids using GenTxid::Wtxid not GenTxid::Txid (master...txorphan_fuzz_whash) https://github.com/bitcoin/bitcoin/pull/28997
<bitcoin-git>
[bitcoin] achow101 merged pull request #28946: init: don't delete PID file if it was not generated (master...fix-pidfile-delete) https://github.com/bitcoin/bitcoin/pull/28946
<bitcoin-git>
bitcoin/master afdc4c3 Andrew Chow: Merge bitcoin/bitcoin#28946: init: don't delete PID file if it was not gen...
<bitcoin-git>
[bitcoin] theStack opened pull request #28996: test: maxuploadtarget: check for mempool msg disconnect if limit is reached, improve existing test coverage (master...202312-test-verify_maxupload_target_state) https://github.com/bitcoin/bitcoin/pull/28996
<bitcoin-git>
[bitcoin] furszy closed pull request #25881: wallet: remove unused DummySignTx and CKeyPool from GetReservedDestination (master...2022_wallet_clean_ckeypool) https://github.com/bitcoin/bitcoin/pull/25881
2023-12-02
<bitcoin-git>
[bitcoin] hebasto opened pull request #28989: test: Fix test by checking the actual exception instance (master...231202-system-test) https://github.com/bitcoin/bitcoin/pull/28989
<fanquake>
Note that we’ve now added support for more repos to this channel, including: btcdeb, bitcoin-maintainer-tools, qa-assets, packaging also the website and guix.sigs
<bitcoin-git>
[bitcoin] furszy opened pull request #28987: wallet: simplify and batch zap wallet txes process (master...2023_wallet_zaptx) https://github.com/bitcoin/bitcoin/pull/28987
2023-12-01
<bitcoin-git>
[bitcoin] murchandamus opened pull request #28985: Avoid changeless input sets when SFFO is active (master...2023-11-no-changeless-sffo) https://github.com/bitcoin/bitcoin/pull/28985
<bitcoin-git>
[bitcoin] achow101 merged pull request #28784: rpc: keep `.cookie` file if it was not generated (master...fix-cookie-delete) https://github.com/bitcoin/bitcoin/pull/28784
<bitcoin-git>
bitcoin/master 18bed14 Andrew Chow: Merge bitcoin/bitcoin#28784: rpc: keep `.cookie` file if it was not genera...
<bitcoin-git>
bitcoin/master 7cb9367 Roman Zeyde: rpc: keep .cookie if it was not generated
<bitcoin-git>
[bitcoin] achow101 merged pull request #28848: bugfix, Change up submitpackage results to return results for all transactions (master...2023-11-submitpackage-results) https://github.com/bitcoin/bitcoin/pull/28848
<bitcoin-git>
[bitcoin] hebasto opened pull request #28981: POC: Replace Boost.Process with cpp-subprocess (master...231130-replace-bp) https://github.com/bitcoin/bitcoin/pull/28981
<bitcoin-git>
[bitcoin] furszy opened pull request #28980: rpc: encryptwallet help, mention HD seed rotation and backup requirement (master...2023_rpc_wallet_encryptwallet) https://github.com/bitcoin/bitcoin/pull/28980
2023-11-30
<bitcoin-git>
[bitcoin] ishaanam opened pull request #28979: wallet, rpc: document and update `sendall` behavior around unconfirmed inputs (master...sendall_ancestor_aware_funding) https://github.com/bitcoin/bitcoin/pull/28979
<Murch[m]>
Re today’s meeting. Here’s a draft of a stupid simple coin selection algorithm that curbs unnecessary fee spending at high feerates while still usually being slightly consolidatory. Basically, a bound on the worst case: https://github.com/bitcoin/bitcoin/pull/28977
<BlueMatt[m]>
so if you're writing a bitcoin parsing library, and you have to parse transactions with no context, and sometimes without a known length, istm you should almost certainly rely on the segwit marker for 0-input transactions
<BlueMatt[m]>
sipa: in general, somehow I had recalled bitcoin core's "heuristic" here to be "try both, and if only one manages to read the full buffer successfully use that"
<bitcoin-git>
[bitcoin] BrandonOdiwuor opened pull request #28974: doc: explain what the wallet password does (master...wallet_passphrase) https://github.com/bitcoin/bitcoin/pull/28974
<Murch[m]>
We recently had another user submit disbelief when their Bitcoin Core wallet used over 500 inputs at a feerate of 75 sat/vB, when they had multiple UTXOs that could have funded the transaction by itself.
<Murch[m]>
Bitcoin Core wallet currently uses three different coin selection algorithms and generates up to ~12 candidate input sets from those in the first attempt, then picks the least wasteful among those per the waste heuristic.