💬 fanquake commented on pull request "doc: Correct `pkgin` command usage on NetBSD":
(https://github.com/bitcoin/bitcoin/pull/33827#issuecomment-3510748600)
Backported to `30.x` in #33609.
(https://github.com/bitcoin/bitcoin/pull/33827#issuecomment-3510748600)
Backported to `30.x` in #33609.
✅ fanquake closed an issue: "fuzz: AddressSanitizer: odr-violation typeinfo name for CCoinsViewBacked"
(https://github.com/bitcoin/bitcoin/issues/32995)
(https://github.com/bitcoin/bitcoin/issues/32995)
💬 fanquake commented on issue "fuzz: AddressSanitizer: odr-violation typeinfo name for CCoinsViewBacked":
(https://github.com/bitcoin/bitcoin/issues/32995#issuecomment-3510749704)
This was either solved @ 21.1.x or user error.
(https://github.com/bitcoin/bitcoin/issues/32995#issuecomment-3510749704)
This was either solved @ 21.1.x or user error.
💬 TheCharlatan commented on pull request "kernel: trim Chain interface":
(https://github.com/bitcoin/bitcoin/pull/33820#discussion_r2509842466)
Yes, I was merely mentioning it, because the `Tip` and `Genesis` methods in current master at least provided a bit better integrity. I don't think this is important at all though. External callers should provide synchronization for this. So the two calls should just be removed imo.
(https://github.com/bitcoin/bitcoin/pull/33820#discussion_r2509842466)
Yes, I was merely mentioning it, because the `Tip` and `Genesis` methods in current master at least provided a bit better integrity. I don't think this is important at all though. External callers should provide synchronization for this. So the two calls should just be removed imo.
🚀 fanquake merged a pull request: "scripted-diff: Remove obsolete comment"
(https://github.com/bitcoin/bitcoin/pull/33826)
(https://github.com/bitcoin/bitcoin/pull/33826)
💬 fanquake commented on pull request "scripted-diff: Remove obsolete comment":
(https://github.com/bitcoin/bitcoin/pull/33826#issuecomment-3510884754)
Backported to `30.x` in #33609.
(https://github.com/bitcoin/bitcoin/pull/33826#issuecomment-3510884754)
Backported to `30.x` in #33609.
💬 Eunovo commented on pull request "validation: ensure assumevalid is always used during reindex":
(https://github.com/bitcoin/bitcoin/pull/31615#discussion_r2510056357)
From what I can infer, we use `MinimumChainWork` to set an "expected chain length". This protects the node from any chain that is not at least as good as the set expected chain length, especially when it is eclipsed. Since the assumevalid block is typically set at the `MinimumChainWork` height, it would seem that we can remove the `MinimumChainWork` check from here by checking that the assumevalid block is an ancestor of (or is) the best_header, but in the case we are using a malicious assumeva
...
(https://github.com/bitcoin/bitcoin/pull/31615#discussion_r2510056357)
From what I can infer, we use `MinimumChainWork` to set an "expected chain length". This protects the node from any chain that is not at least as good as the set expected chain length, especially when it is eclipsed. Since the assumevalid block is typically set at the `MinimumChainWork` height, it would seem that we can remove the `MinimumChainWork` check from here by checking that the assumevalid block is an ancestor of (or is) the best_header, but in the case we are using a malicious assumeva
...
💬 Eunovo commented on pull request "validation: ensure assumevalid is always used during reindex":
(https://github.com/bitcoin/bitcoin/pull/31615#discussion_r2510065160)
I wouldn't mind adding a comment stating this. Reviewers can confirm if it correctly reflects the intent of the code.
(https://github.com/bitcoin/bitcoin/pull/31615#discussion_r2510065160)
I wouldn't mind adding a comment stating this. Reviewers can confirm if it correctly reflects the intent of the code.
💬 willcl-ark commented on issue "Inconsistent CJDNS address handling in Local addresses and AddLocal logs":
(https://github.com/bitcoin/bitcoin/issues/33471#issuecomment-3511034888)
@big14way you don't need to be assigned an issue to work on it in this project. Opening a pull request (please read CONTRIBUTING.md frist) and linking it to this issue in the PR description is all that's needed.
(https://github.com/bitcoin/bitcoin/issues/33471#issuecomment-3511034888)
@big14way you don't need to be assigned an issue to work on it in this project. Opening a pull request (please read CONTRIBUTING.md frist) and linking it to this issue in the PR description is all that's needed.
💬 TheCharlatan commented on pull request "ci: Enable experimental kernel stuff in most CI tasks":
(https://github.com/bitcoin/bitcoin/pull/33824#issuecomment-3511082065)
> I was thinking about permitting nullptr when size=0, or even just permitting nullptr for any size, when the data pointer is followed by a size?
Afaict our de-serialization can handle this case (nullptr when size=0) correctly, but fails when passed a nullptr with non-zero size. Maybe a null check in `btck_block_create(...)` would be better? What do you think?
(https://github.com/bitcoin/bitcoin/pull/33824#issuecomment-3511082065)
> I was thinking about permitting nullptr when size=0, or even just permitting nullptr for any size, when the data pointer is followed by a size?
Afaict our de-serialization can handle this case (nullptr when size=0) correctly, but fails when passed a nullptr with non-zero size. Maybe a null check in `btck_block_create(...)` would be better? What do you think?
💬 l0rinc commented on pull request "build: add `-W*-whitespace`":
(https://github.com/bitcoin/bitcoin/pull/32482#issuecomment-3511133487)
reACK 2e713c22c67b3551f04273428db266503178e7fa
<details>
<summary>change since last ack</summary>
```bash
git fetch origin 2e713c22c67b3551f04273428db266503178e7fa && git range-diff 854269a...2e713c2
```
commit messages include scripted diffs and the suggested change by AJ:
```
+%define TBL rbp
```
</details>
(https://github.com/bitcoin/bitcoin/pull/32482#issuecomment-3511133487)
reACK 2e713c22c67b3551f04273428db266503178e7fa
<details>
<summary>change since last ack</summary>
```bash
git fetch origin 2e713c22c67b3551f04273428db266503178e7fa && git range-diff 854269a...2e713c2
```
commit messages include scripted diffs and the suggested change by AJ:
```
+%define TBL rbp
```
</details>
💬 hebasto commented on pull request "build: add `-W*-whitespace`":
(https://github.com/bitcoin/bitcoin/pull/32482#discussion_r2510211223)
This change has just been merged [upstream](https://github.com/arun11299/cpp-subprocess/pull/121).
(https://github.com/bitcoin/bitcoin/pull/32482#discussion_r2510211223)
This change has just been merged [upstream](https://github.com/arun11299/cpp-subprocess/pull/121).
💬 fanquake commented on pull request "build: add `-W*-whitespace`":
(https://github.com/bitcoin/bitcoin/pull/32482#issuecomment-3511165591)
> if expand/sponge are available:
We don't have sponge, but added a commit to add `moreutils`, and pushed up the scripted diffs.
(https://github.com/bitcoin/bitcoin/pull/32482#issuecomment-3511165591)
> if expand/sponge are available:
We don't have sponge, but added a commit to add `moreutils`, and pushed up the scripted diffs.
💬 fanquake commented on pull request "build: add `-W*-whitespace`":
(https://github.com/bitcoin/bitcoin/pull/32482#discussion_r2510228737)
Thanks.
(https://github.com/bitcoin/bitcoin/pull/32482#discussion_r2510228737)
Thanks.
🚀 fanquake merged a pull request: "util: Allow `Assert` (et al.) in contexts without __func__"
(https://github.com/bitcoin/bitcoin/pull/33785)
(https://github.com/bitcoin/bitcoin/pull/33785)
💬 yuvicc commented on pull request "kernel: Add block header support and validation":
(https://github.com/bitcoin/bitcoin/pull/33822#discussion_r2510258822)
This sounds good to me. Maybe can be done on a separate PR?
(https://github.com/bitcoin/bitcoin/pull/33822#discussion_r2510258822)
This sounds good to me. Maybe can be done on a separate PR?
🤔 hebasto reviewed a pull request: "build: add `-W*-whitespace`"
(https://github.com/bitcoin/bitcoin/pull/32482#pullrequestreview-3442877665)
Tested 2e713c22c67b3551f04273428db266503178e7fa on Ubuntu 25.10 with GCC 15.2.0:
```
$ cmake --build build
<snip>
[340/1092] Building CXX object src/qt/CMakeFiles/bitcoinqt.dir/bitcoinqt_autogen/EWIEGA46WW/qrc_bitcoin.cpp.o
src/qt/bitcoinqt_autogen/EWIEGA46WW/qrc_bitcoin.cpp:5603:2: warning: trailing whitespace [-Wtrailing-whitespace=]
5603 |
src/qt/bitcoinqt_autogen/EWIEGA46WW/qrc_bitcoin.cpp:8254:2: warning: trailing whitespace [-Wtrailing-whitespace=]
8254 |
src/qt/bitcoinqt_autogen/EWIEG
...
(https://github.com/bitcoin/bitcoin/pull/32482#pullrequestreview-3442877665)
Tested 2e713c22c67b3551f04273428db266503178e7fa on Ubuntu 25.10 with GCC 15.2.0:
```
$ cmake --build build
<snip>
[340/1092] Building CXX object src/qt/CMakeFiles/bitcoinqt.dir/bitcoinqt_autogen/EWIEGA46WW/qrc_bitcoin.cpp.o
src/qt/bitcoinqt_autogen/EWIEGA46WW/qrc_bitcoin.cpp:5603:2: warning: trailing whitespace [-Wtrailing-whitespace=]
5603 |
src/qt/bitcoinqt_autogen/EWIEGA46WW/qrc_bitcoin.cpp:8254:2: warning: trailing whitespace [-Wtrailing-whitespace=]
8254 |
src/qt/bitcoinqt_autogen/EWIEG
...
💬 fanquake commented on pull request "build: add `-W*-whitespace`":
(https://github.com/bitcoin/bitcoin/pull/32482#issuecomment-3511243308)
The minisketch issues are solved with pulling the subtree. I guess we are now just blocked on Qt / GUI tooling...
(https://github.com/bitcoin/bitcoin/pull/32482#issuecomment-3511243308)
The minisketch issues are solved with pulling the subtree. I guess we are now just blocked on Qt / GUI tooling...
💬 fanquake commented on pull request "Update `minisketch` subtree and switch to its build script":
(https://github.com/bitcoin/bitcoin/pull/32856#issuecomment-3511268570)
Any chance you want to turn this into just a subtree pull, and do the switchover in a followup PR?
(https://github.com/bitcoin/bitcoin/pull/32856#issuecomment-3511268570)
Any chance you want to turn this into just a subtree pull, and do the switchover in a followup PR?
🤔 rkrux reviewed a pull request: "miniscript: account for all `StringType` variants in `Miniscriptdescriptor::ToString()`"
(https://github.com/bitcoin/bitcoin/pull/31734#pullrequestreview-3443008539)
Concept ACK 28a4fcb03c0fb1cd5112eca1eb36dcb13e0b4ff2
Thanks for adding the fix!
The PR description can be modified slightly to emphasise that the issue is with Miniscript expressions and not only the Taproot descriptor.
(https://github.com/bitcoin/bitcoin/pull/31734#pullrequestreview-3443008539)
Concept ACK 28a4fcb03c0fb1cd5112eca1eb36dcb13e0b4ff2
Thanks for adding the fix!
The PR description can be modified slightly to emphasise that the issue is with Miniscript expressions and not only the Taproot descriptor.