-
Notifications
You must be signed in to change notification settings - Fork 204
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
v10.9.0-rc.1 #2921
v10.9.0-rc.1 #2921
Conversation
ouziel-slama
commented
Jan 9, 2025
•
edited
Loading
edited
- Double-check the spelling and grammar of all strings, code comments, etc.
- Double-check that all code is deterministic that needs to be
- Add tests to cover any new or revised logic
- Ensure that the test suite passes
- Update the project release notes
- Update the project documentation, as appropriate, with a corresponding Pull Request in the Documentation repository
Refactor raw mempool parsing + Fixes
Add cache for unsupported transactions when parsing raw mempool
… by asset endpoint
Testnet4 Support
Fix Regtest tests with Bitcoin 28
Bump version to `v10.9.0-rc.1`
Fix bootstrap with custom url
with open(zst_filepath, "rb") as input_file: | ||
pyzstd.decompress_stream(input_file, output_file, read_size=16 * 1024) | ||
os.remove(zst_filepath) | ||
os.chmod(filepath, 0o660) |
Check warning
Code scanning / Bandit
Chmod setting a permissive mask 0o660 on file (filepath). Warning
filepath = os.path.join(data_dir, filename) | ||
with io.open(filepath, "wb") as output_file: | ||
pyzstd.decompress_stream(response, output_file, read_size=16 * 1024) | ||
os.chmod(filepath, 0o660) |
Check warning
Code scanning / Bandit
Chmod setting a permissive mask 0o660 on file (filepath). Warning
Merge pull request #2845 from CounterpartyXCP/develop
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.
🎉
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.
pylint found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
Fix bootstrap testnet