bug.yml
 1  name: Bug report
 2  description: Submit a new bug report.
 3  labels: [bug]
 4  body:
 5    - type: markdown
 6      attributes:
 7        value: |
 8          ## This issue tracker is only for technical issues related to Bitcoin Core.
 9  
10          * General bitcoin questions and/or support requests should use Bitcoin StackExchange at https://bitcoin.stackexchange.com.
11          * For reporting security issues, please read instructions at https://bitcoincore.org/en/contact/.
12          * 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.
13  
14          ----
15    - type: checkboxes
16      attributes:
17        label: Is there an existing issue for this?
18        description: Please search to see if an issue already exists for the bug you encountered.
19        options:
20        - label: I have searched the existing issues
21          required: true
22    - type: textarea
23      id: current-behaviour
24      attributes:
25        label: Current behaviour
26        description: Tell us what went wrong
27      validations:
28        required: true
29    - type: textarea
30      id: expected-behaviour
31      attributes:
32        label: Expected behaviour
33        description: Tell us what you expected to happen
34      validations:
35        required: true
36    - type: textarea
37      id: reproduction-steps
38      attributes:
39        label: Steps to reproduce
40        description: |
41          Tell us how to reproduce your bug. Please attach related screenshots if necessary.
42          * Run-time or compile-time configuration options
43          * Actions taken
44      validations:
45        required: true
46    - type: textarea
47      id: logs
48      attributes:
49        label: Relevant log output
50        description: |
51          Please copy and paste any relevant log output or attach a debug log file.
52  
53          You can find the debug.log in your [data dir.](https://github.com/bitcoin/bitcoin/blob/master/doc/files.md#data-directory-location)
54  
55          Please be aware that the debug log might contain personally identifying information.
56      validations:
57        required: false
58    - type: dropdown
59      attributes:
60        label: How did you obtain Bitcoin Core
61        multiple: false
62        options:
63          - Compiled from source
64          - Pre-built binaries
65          - Package manager
66          - Other
67      validations:
68        required: true
69    - type: input
70      id: core-version
71      attributes:
72        label: What version of Bitcoin Core are you using?
73        description: Run `bitcoind --version` or in Bitcoin-QT use `Help > About Bitcoin Core`
74        placeholder: e.g. v24.0.1 or master@e1bf547
75      validations:
76        required: true
77    - type: input
78      id: os
79      attributes:
80        label: Operating system and version
81        placeholder: e.g. "MacOS 26.0" or "Ubuntu 26.04 LTS"
82      validations:
83        required: true
84    - type: textarea
85      id: machine-specs
86      attributes:
87        label: Machine specifications
88        description: |
89          What are the specifications of the host machine?
90          e.g. OS/CPU and disk type, network connectivity
91      validations:
92        required: false