-
Notifications
You must be signed in to change notification settings - Fork 0
Merge bitcoin/bitcoin#28364: log: log wtxids when possible, add TXPACKAGES category #918
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: backport-0.26-batch-661
Are you sure you want to change the base?
Changes from all commits
e2170fa
3b77f7b
bb48fca
d37d868
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -67,6 +67,8 @@ namespace BCLog { | |
| #endif | ||
| BLOCKSTORE = (1 << 26), | ||
| TXRECONCILIATION = (1 << 27), | ||
| SCAN = (uint64_t)1 << 28, | ||
| TXPACKAGES = (uint64_t)1 << 29, | ||
|
Comment on lines
+70
to
+71
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick (assertive) New flags look correct; minor consistency nit Casting the literal to 🤖 Prompt for AI Agents |
||
|
|
||
| //Start Dash | ||
| CHAINLOCKS = ((uint64_t)1 << 32), | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 Nitpick (assertive)
Array ↔ switch keep-in-sync risk
LogCategories[]andLogCategoryToStr()are now in sync, but each manual addition increases the chance for drift.Consider centralising the mapping (e.g. generate
LogCategoryToStr()from the array) to avoid future mismatches.🤖 Prompt for AI Agents