-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix: add crossbeam-epoch dependency to fix panic backtrace messages on 0.7.1 version #52 - V3 custom config for testnets #57 - allow usernet to mine more blocks using header version 6, just like f… #58 - fix: A small update to enable block mining on usernet v3 #59 - feat: usernet now is optimized to mine more blocks per second #60 - fix: small fix related to match_ref variable #61 - Fix/documentation #62 - Feat/get blocks #64 - feat: Added feedback if foundations are broken #65 - Update the develop branch with master commits #66 - Feat: Add Testnet configuration file #67 - Floonet configuration #68 - Fix cucumber tests #69 - Freeze randomx and progpow libraries using tags #73 - Make builds reproducible #74 - Edit pre-commit and add PR template #75 - Add automation to build the release binaries and tar files #76 - Update main readme for the project #78
- Loading branch information
Showing
45 changed files
with
2,126 additions
and
829 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 |
---|---|---|
@@ -1,3 +1,12 @@ | ||
# use hard tabs for rust source files | ||
[*] | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.rs] | ||
indent_style = tab | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
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,27 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "[BUG]" | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior. | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Required data** | ||
- Node/Wallet/Miner log as text or screenshot | ||
- Config toml file or command line | ||
- OS: [e.g. Windows] | ||
- Rust Version | ||
- Cargo Version | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,23 @@ | ||
# Description | ||
|
||
Please include a summary of the changes and the related issue. Please also include relevant motivation and context. List any dependencies that are required for this change. | ||
|
||
## Type of change | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] Chore (miscellaneous changes e.g. modifying .gitignore) | ||
- [ ] Build (Affect build components like build tool, ci pipeline, dependencies, project version) | ||
- [ ] Docs (documentation update) | ||
|
||
# How Has This Been Tested? | ||
|
||
Please describe the tests that you ran to verify your changes | ||
|
||
- [ ] Test A | ||
- [ ] Test B | ||
|
||
# Relevant notes | ||
|
||
Notes about your pull request that may be useful for the reviewer |
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 |
---|---|---|
|
@@ -14,4 +14,5 @@ test_output | |
wallet_data | ||
wallet/db | ||
.idea/ | ||
build/ | ||
/build/ | ||
release/ |
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
Oops, something went wrong.