feat: increase the number of block headers able to be downloaded at once to 8000 in protocol version 70235
#7945
Workflow file for this run
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
name: Clang Diff Format Check | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
ClangFormat: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Fetch git | |
run: git fetch | |
- name: Run Clang-Format-Diff.py | |
run: | | |
git diff -U0 origin/develop -- $(git ls-files -- $(cat test/util/data/non-backported.txt)) | ./contrib/devtools/clang-format-diff.py -p1 > diff_output.txt | |
if [ -s diff_output.txt ]; then | |
echo "Clang format differences found:" | |
cat diff_output.txt | |
exit 1 | |
else | |
echo "No Clang format differences found." | |
fi |