mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-09-11 21:20:39 +02:00
Document project expectations for AI-assisted contributions so contributors understand when AI use is acceptable and when it creates review or moderation burden. Link to the document directly from the new PR and issues helptext.
94 lines
3.2 KiB
YAML
94 lines
3.2 KiB
YAML
name: Bug report
|
|
description: Submit a new bug report.
|
|
labels: [bug]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
## This issue tracker is only for technical issues related to Bitcoin Core.
|
|
|
|
* General bitcoin questions and/or support requests should use Bitcoin StackExchange at https://bitcoin.stackexchange.com.
|
|
* For reporting security issues, please read instructions at https://bitcoincore.org/en/contact/.
|
|
* If the node is "stuck" during sync or giving "block checksum mismatch" errors, please ensure your hardware is stable by running `memtest` and observe CPU temperature with a load-test tool such as `linpack` before creating an issue.
|
|
* If you use AI tools when opening this issue, please read the [AI policy](https://github.com/bitcoin/bitcoin/blob/master/doc/AI_POLICY.md).
|
|
|
|
----
|
|
- type: checkboxes
|
|
attributes:
|
|
label: Is there an existing issue for this?
|
|
description: Please search to see if an issue already exists for the bug you encountered.
|
|
options:
|
|
- label: I have searched the existing issues
|
|
required: true
|
|
- type: textarea
|
|
id: current-behaviour
|
|
attributes:
|
|
label: Current behaviour
|
|
description: Tell us what went wrong
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expected-behaviour
|
|
attributes:
|
|
label: Expected behaviour
|
|
description: Tell us what you expected to happen
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: reproduction-steps
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: |
|
|
Tell us how to reproduce your bug. Please attach related screenshots if necessary.
|
|
* Run-time or compile-time configuration options
|
|
* Actions taken
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Relevant log output
|
|
description: |
|
|
Please copy and paste any relevant log output or attach a debug log file.
|
|
|
|
You can find the debug.log in your [data dir.](https://github.com/bitcoin/bitcoin/blob/master/doc/files.md#data-directory-location)
|
|
|
|
Please be aware that the debug log might contain personally identifying information.
|
|
validations:
|
|
required: false
|
|
- type: dropdown
|
|
attributes:
|
|
label: How did you obtain Bitcoin Core
|
|
multiple: false
|
|
options:
|
|
- Compiled from source
|
|
- Pre-built binaries
|
|
- Package manager
|
|
- Other
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: core-version
|
|
attributes:
|
|
label: What version of Bitcoin Core are you using?
|
|
description: Run `bitcoind --version` or in Bitcoin-QT use `Help > About Bitcoin Core`
|
|
placeholder: e.g. v24.0.1 or master@e1bf547
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: os
|
|
attributes:
|
|
label: Operating system and version
|
|
placeholder: e.g. "MacOS 26.0" or "Ubuntu 26.04 LTS"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: machine-specs
|
|
attributes:
|
|
label: Machine specifications
|
|
description: |
|
|
What are the specifications of the host machine?
|
|
e.g. OS/CPU and disk type, network connectivity
|
|
validations:
|
|
required: false
|