-
Notifications
You must be signed in to change notification settings - Fork 649
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
242 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a detailed report about a deficiency in the BitShares Core implementation. | ||
|
||
--- | ||
|
||
**Instructions** | ||
Please include a detailed Title above. Next, please complete the following sections below: | ||
* Bug Description | ||
* Impacts | ||
* Steps To Reproduce | ||
* Expected Behavior | ||
* Screenshots (optional) | ||
* Host Environment (optional) | ||
* Additional Context (optional) | ||
|
||
Finally, press the 'Submit new issue' button. The Core Team will evaluate and prioritize your Bug Report for future development. | ||
|
||
**Bug Description** | ||
A clear and concise description of what the bug is. | ||
|
||
**Impacts** | ||
Describe which portion(s) of BitShares Core may be impacted by this bug. Please tick at least one box. | ||
- [ ] API (the application programming interface) | ||
- [ ] Build (the build process or something prior to compiled code) | ||
- [ ] CLI (the command line wallet) | ||
- [ ] Deployment (the deployment process after building such as Docker, Travis, etc.) | ||
- [ ] DEX (the Decentralized EXchange, market engine, etc.) | ||
- [ ] P2P (the peer-to-peer network for transaction/block propagation) | ||
- [ ] Performance (system or user efficiency, etc.) | ||
- [ ] Protocol (the blockchain logic, consensus, validation, etc.) | ||
- [ ] Security (the security of system or user data, etc.) | ||
- [ ] UX (the User Experience) | ||
- [ ] Other (please add below) | ||
|
||
**Steps To Reproduce** | ||
Steps to reproduce the behavior (example outlined below): | ||
1. Execute API call '...' | ||
2. Using JSON payload '...' | ||
3. Received response '...' | ||
4. See error in screenshot | ||
|
||
**Expected Behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots (optional)** | ||
If applicable, add screenshots to help explain process flow and behavior. | ||
|
||
**Host Environment** | ||
Please provide details about the host environment. Much of this information can be found running: `witness_node --version`. | ||
- Host OS: [e.g. Ubuntu 18.04 LTS] | ||
- Host Physical RAM [e.g. 4GB] | ||
- BitShares Version: [e.g. 2.0.180425] | ||
- OpenSSL Version: [e.g. 1.1.0g] | ||
- Boost Version: [e.g. 1.65.1] | ||
|
||
**Additional Context (optional)** | ||
Add any other context about the problem here. | ||
|
||
## CORE TEAM TASK LIST | ||
- [ ] Evaluate / Prioritize Bug Report | ||
- [ ] Refine User Stories / Requirements | ||
- [ ] Define Test Cases | ||
- [ ] Design / Develop Solution | ||
- [ ] Perform QA/Testing | ||
- [ ] Update Documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
name: Build Error | ||
about: Create a detailed report about an error encountered during the BitShares Core build process. | ||
|
||
--- | ||
|
||
**Instructions** | ||
Please include a detailed Title above. Next, please complete the following sections below: | ||
* Build Error | ||
* Build Environment | ||
* Steps To Reproduce | ||
* Console Logs (optional) | ||
|
||
Finally, press the 'Submit new issue' button. The Core Team will evaluate and prioritize your Bug Report for future development. | ||
|
||
**Build Error Description** | ||
A clear and concise description of what the build error is. | ||
|
||
**Build Environment** | ||
Details about the build environment, including the relevant required libraries. Much of this information can be found in the `CMakeFiles/CMakeOutput.log`. | ||
- Host OS: [e.g. Ubuntu 18.04 LTS] | ||
- Host Physical RAM [e.g. 4GB] | ||
- Source Branch/Tag: [e.g. master or 2.0.180425] | ||
- OpenSSL Version: [e.g. 1.1.0g] | ||
- Boost Version: [e.g. 1.65.1] | ||
- C++ Compiler: [e.g. gcc version 4.8.5] | ||
|
||
**Steps To Reproduce** | ||
Steps to reproduce the behavior (example outlined below): | ||
1. Using installation guide from this URL... | ||
2. This is my complete build script... | ||
3. It fails at this step with the following output... | ||
4. See the error in the console log below... | ||
|
||
**Console Logs (optional)** | ||
Please provide the full console log, including all commands entered and their output. This will allow detailed troubleshooting. | ||
|
||
## CORE TEAM TASK LIST | ||
- [ ] Evaluate `Build Error` | ||
- [ ] Provide build guidance | ||
- [ ] <OR> Create `Bug Report` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for the BitShares Core Team to evaluate and prioritize for development. | ||
|
||
--- | ||
|
||
**Instructions** | ||
Please include a detailed Title above. Next, please complete the following sections below: | ||
* User Story | ||
* Impacts | ||
* Additional Context (optional) | ||
|
||
Finally, press the 'Submit new issue' button. The Core Team will evaluate and prioritize your Feature Request for future development. | ||
|
||
**User Story** | ||
Please tell us about your feature request using the User Story format: | ||
As a `<persona>` I want `<some functionality>` so that `<some benefit is realized>`. | ||
|
||
At minimum, please define the `<who>`, `<what>` and `<why>` for your feature request. The `<who>` may be the system software, a component thereof, the end user, etc.; please be specific describing the context. The `<what>` details the solution your feature will provide; please describe the process flow for the functionality. The `<why>` details the benefits the feature will deliver; consider referencing alternative implementations for context. | ||
|
||
**Impacts** | ||
Describe which portion(s) of BitShares Core may be impacted by your request. Please tick at least one box. | ||
- [ ] API (the application programming interface) | ||
- [ ] Build (the build process or something prior to compiled code) | ||
- [ ] CLI (the command line wallet) | ||
- [ ] Deployment (the deployment process after building such as Docker, Travis, etc.) | ||
- [ ] DEX (the Decentralized EXchange, market engine, etc.) | ||
- [ ] P2P (the peer-to-peer network for transaction/block propagation) | ||
- [ ] Performance (system or user efficiency, etc.) | ||
- [ ] Protocol (the blockchain logic, consensus, validation, etc.) | ||
- [ ] Security (the security of system or user data, etc.) | ||
- [ ] UX (the User Experience) | ||
- [ ] Other (please add below) | ||
|
||
**Additional Context (optional)** | ||
Add any other context about your request here. | ||
|
||
## CORE TEAM TASK LIST | ||
- [ ] Evaluate / Prioritize Feature Request | ||
- [ ] Refine User Stories / Requirements | ||
- [ ] Define Test Cases | ||
- [ ] Design / Develop Solution | ||
- [ ] Perform QA/Testing | ||
- [ ] Update Documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters